From abe5aa96df6f47450c4639e7dad0c673a2d7f1c2 Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Thu, 2 Jan 2025 12:04:07 +0700 Subject: [PATCH 1/8] init --- pkg/ingester/otlp/ingest_handler_test.go | 71 +++---- ...fferentServiceNames_service_a_profile.json | 58 ++++++ ...fferentServiceNames_service_b_profile.json | 58 ++++++ ...DifferentServiceNames_unknown_profile.json | 58 ++++++ .../otlp/testdata/TestSampleAttributes.json | 102 ++++++++++ .../testdata/TestSymbolizedFunctionNames.json | 51 +++++ pkg/og/convert/pprof/bench/utils.go | 2 - pkg/og/convert/pprof/strprofile/profile.go | 186 ++++++++++++++++++ 8 files changed, 544 insertions(+), 42 deletions(-) create mode 100644 pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json create mode 100644 pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json create mode 100644 pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json create mode 100644 pkg/ingester/otlp/testdata/TestSampleAttributes.json create mode 100644 pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json create mode 100644 pkg/og/convert/pprof/strprofile/profile.go diff --git a/pkg/ingester/otlp/ingest_handler_test.go b/pkg/ingester/otlp/ingest_handler_test.go index 4d8943ddff..3d05a5fd3b 100644 --- a/pkg/ingester/otlp/ingest_handler_test.go +++ b/pkg/ingester/otlp/ingest_handler_test.go @@ -2,8 +2,8 @@ package otlp import ( "context" - "fmt" - "strings" + phlaremodel "github.com/grafana/pyroscope/pkg/model" + "os" "testing" "github.com/grafana/pyroscope/pkg/distributor/model" @@ -14,7 +14,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 +160,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 +197,7 @@ func TestSymbolizedFunctionNames(t *testing.T) { LocationsLength: 2, Value: []int64{0xef}, }} + otlpb.profile.TimeNanos = 239 req := &v1experimental2.ExportProfilesServiceRequest{ ResourceProfiles: []*v1experimental.ResourceProfiles{{ ScopeProfiles: []*v1experimental.ScopeProfiles{{ @@ -205,13 +212,10 @@ func TestSymbolizedFunctionNames(t *testing.T) { 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{}) + require.NoError(t, err) + expectedJSON := readJSONFile(t, "testdata/TestSymbolizedFunctionNames.json") + require.JSONEq(t, expectedJSON, jsonStr) } func TestSampleAttributes(t *testing.T) { @@ -276,6 +280,7 @@ func TestSampleAttributes(t *testing.T) { }, }, }} + otlpb.profile.TimeNanos = 239 req := &v1experimental2.ExportProfilesServiceRequest{ ResourceProfiles: []*v1experimental.ResourceProfiles{{ ScopeProfiles: []*v1experimental.ScopeProfiles{{ @@ -299,15 +304,10 @@ 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{}) + require.NoError(t, err) + expectedJSON := readJSONFile(t, "testdata/TestSampleAttributes.json") + require.JSONEq(t, expectedJSON, jsonStr) } func TestDifferentServiceNames(t *testing.T) { @@ -438,7 +438,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 +453,17 @@ 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\"}": readJSONFile(t, "testdata/TestDifferentServiceNames_service_a_profile.json"), + "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-b\"}": readJSONFile(t, "testdata/TestDifferentServiceNames_service_b_profile.json"), + "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"unknown\"}": readJSONFile(t, "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) + expectedJson := expectedProfiles[series] gp := p.Series[0].Samples[0].Profile.Profile @@ -481,14 +476,10 @@ 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{}) + require.NoError(t, err) + require.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..e7411b9a6c --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json @@ -0,0 +1,58 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1100", + "lines": [ + { + "function": { + "name": "serviceA_func1", + "system_name": "serviceA_func1", + "filename": "service_a.go" + }, + "line": 10 + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x2000", + "offset": "0x0", + "filename": "service-a.so" + } + }, + { + "address": "0x1200", + "lines": [ + { + "function": { + "name": "serviceA_func2", + "system_name": "serviceA_func2", + "filename": "service_a.go" + }, + "line": 20 + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x2000", + "offset": "0x0", + "filename": "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..edfa5aa484 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json @@ -0,0 +1,58 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x2100", + "lines": [ + { + "function": { + "name": "serviceB_func1", + "system_name": "serviceB_func1", + "filename": "service_b.go" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x3000", + "offset": "0x0", + "filename": "service-b.so" + } + }, + { + "address": "0x2200", + "lines": [ + { + "function": { + "name": "serviceB_func2", + "system_name": "serviceB_func2", + "filename": "service_b.go" + }, + "line": 40 + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x3000", + "offset": "0x0", + "filename": "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..2df1efd7c5 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json @@ -0,0 +1,58 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0xef0", + "lines": [ + { + "function": { + "name": "serviceC_func3", + "system_name": "serviceC_func3", + "filename": "service_c.go" + }, + "line": 50 + } + ], + "mapping": { + "start": "0x4000", + "limit": "0x5000", + "offset": "0x0", + "filename": "service-c.so" + } + }, + { + "address": "0xef0", + "lines": [ + { + "function": { + "name": "serviceC_func3", + "system_name": "serviceC_func3", + "filename": "service_c.go" + }, + "line": 50 + } + ], + "mapping": { + "start": "0x4000", + "limit": "0x5000", + "offset": "0x0", + "filename": "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..89d2076216 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestSampleAttributes.json @@ -0,0 +1,102 @@ +{ + "sample_types": [ + { + "type": "samples", + "unit": "ms" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "firefox.so 0x1e" + } + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x1000", + "offset": "0x0", + "filename": "firefox.so" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "firefox.so 0x2e" + } + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x1000", + "offset": "0x0", + "filename": "firefox.so" + } + } + ], + "values": [ + 239 + ], + "labels": [ + { + "key": "process", + "value": "firefox" + } + ] + }, + { + "locations": [ + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "chrome.so 0x3e" + } + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x1000", + "offset": "0x0", + "filename": "chrome.so" + } + }, + { + "address": "0x4e", + "lines": [ + { + "function": { + "name": "chrome.so 0x4e" + } + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x1000", + "offset": "0x0", + "filename": "chrome.so" + } + } + ], + "values": [ + 61423 + ], + "labels": [ + { + "key": "process", + "value": "chrome" + } + ] + } + ], + "time_nanos": 239, + "duration_nanos": 10000000000 +} \ 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..3b225a3f80 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json @@ -0,0 +1,51 @@ +{ + "sample_types": [ + { + "type": "samples", + "unit": "ms" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1e0", + "lines": [ + { + "function": { + "name": "file1.so 0x1e0" + } + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x1000", + "offset": "0x0", + "filename": "file1.so" + } + }, + { + "address": "0x2f0", + "lines": [ + { + "function": { + "name": "file1.so 0x2f0" + } + } + ], + "mapping": { + "start": "0x1000", + "limit": "0x1000", + "offset": "0x0", + "filename": "file1.so" + } + } + ], + "values": [ + 239 + ] + } + ], + "time_nanos": 239, + "duration_nanos": 10000000000 +} \ 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..2e33cc5ad7 --- /dev/null +++ b/pkg/og/convert/pprof/strprofile/profile.go @@ -0,0 +1,186 @@ +package strprofile + +import ( + "encoding/json" + "fmt" + "strconv" + + profilev1 "github.com/grafana/pyroscope/api/gen/proto/go/google/v1" +) + +// Options controls what information is included in the stringified output +type Options struct { + NoPrettyPrint bool +} + +// Location represents a denormalized location +type Location struct { + 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 { + Name string `json:"name"` + SystemName string `json:"system_name,omitempty"` + Filename string `json:"filename,omitempty"` + StartLine int64 `json:"start_line,omitempty"` +} + +type Mapping struct { + 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 int64 `json:"time_nanos,omitempty"` + DurationNanos int64 `json:"duration_nanos,omitempty"` + Period int64 `json:"period,omitempty"` +} + +// Stringify converts a profile to a human-readable JSON representation +func Stringify(p *profilev1.Profile, opts Options) (string, error) { + sp := Profile{ + TimeNanos: p.TimeNanos, + DurationNanos: p.DurationNanos, + Period: p.Period, + } + + // Process sample types + 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 + } + + // Process samples + for _, sample := range p.Sample { + ss := Sample{ + Values: sample.Value, + } + + // Process locations + for _, locID := range sample.LocationId { + loc := findLocation(p.Location, locID) + if loc == nil { + continue + } + + sLoc := Location{ + Address: fmt.Sprintf("0x%x", loc.Address), + } + + // Process mapping + if loc.MappingId != 0 { + if mapping := mappingMap[loc.MappingId]; mapping != nil { + sLoc.Mapping = &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], + } + } + } + + // Process lines + for _, line := range loc.Line { + if fn := functionMap[line.FunctionId]; fn != nil { + sLine := Line{ + Function: &Function{ + Name: p.StringTable[fn.Name], + SystemName: p.StringTable[fn.SystemName], + Filename: p.StringTable[fn.Filename], + StartLine: fn.StartLine, + }, + Line: line.Line, + } + sLoc.Lines = append(sLoc.Lines, sLine) + } + } + + ss.Locations = append(ss.Locations, sLoc) + } + + // Process labels + 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) + } + + var jsonData []byte + var err error + if !opts.NoPrettyPrint { + jsonData, err = json.MarshalIndent(sp, "", " ") + } else { + jsonData, err = json.Marshal(sp) + } + if err != nil { + return "", err + } + + return string(jsonData), nil +} + +// Helper function to find a location by ID +func findLocation(locations []*profilev1.Location, id uint64) *profilev1.Location { + for _, loc := range locations { + if loc.Id == id { + return loc + } + } + return nil +} From be260f7a5a5c69766e95a82cc1aaf832c03325c0 Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Thu, 2 Jan 2025 04:31:18 -0500 Subject: [PATCH 2/8] add integration test --- pkg/ingester/otlp/convert.go | 1 - pkg/og/convert/pprof/strprofile/profile.go | 12 +- pkg/test/integration/helper.go | 18 +- pkg/test/integration/ingest_otlp_test.go | 105 + pkg/test/integration/testdata/.gitignore | 1 + .../otel-ebpf-profiler-unsymbolized.json | 45401 ++++++++++++++++ .../otel-ebpf-profiler-unsymbolized.pb.bin | Bin 0 -> 192471 bytes .../otel-ebpf-profiler-unsymbolized2.json | 45401 ++++++++++++++++ 8 files changed, 90931 insertions(+), 8 deletions(-) create mode 100644 pkg/test/integration/ingest_otlp_test.go create mode 100644 pkg/test/integration/testdata/.gitignore create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json 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/og/convert/pprof/strprofile/profile.go b/pkg/og/convert/pprof/strprofile/profile.go index 2e33cc5ad7..46dc106de8 100644 --- a/pkg/og/convert/pprof/strprofile/profile.go +++ b/pkg/og/convert/pprof/strprofile/profile.go @@ -59,17 +59,17 @@ type Sample struct { type Profile struct { SampleTypes []SampleType `json:"sample_types"` Samples []Sample `json:"samples"` - TimeNanos int64 `json:"time_nanos,omitempty"` - DurationNanos int64 `json:"duration_nanos,omitempty"` - Period int64 `json:"period,omitempty"` + TimeNanos string `json:"time_nanos,omitempty"` + DurationNanos string `json:"duration_nanos,omitempty"` + Period string `json:"period,omitempty"` } // Stringify converts a profile to a human-readable JSON representation func Stringify(p *profilev1.Profile, opts Options) (string, error) { sp := Profile{ - TimeNanos: p.TimeNanos, - DurationNanos: p.DurationNanos, - Period: p.Period, + TimeNanos: fmt.Sprintf("%d", p.TimeNanos), + DurationNanos: fmt.Sprintf("%d", p.DurationNanos), + Period: fmt.Sprintf("%d", p.Period), } // Process sample types diff --git a/pkg/test/integration/helper.go b/pkg/test/integration/helper.go index 7771f936e5..e732242081 100644 --- a/pkg/test/integration/helper.go +++ b/pkg/test/integration/helper.go @@ -30,12 +30,15 @@ import ( 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" "github.com/grafana/pyroscope/pkg/phlare" "github.com/grafana/pyroscope/pkg/pprof" "github.com/grafana/pyroscope/pkg/util/connectgrpc" + "google.golang.org/grpc" + "google.golang.org/grpc/credentials/insecure" ) type PyroscopeTest struct { @@ -393,7 +396,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 +414,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..92889c9bf6 --- /dev/null +++ b/pkg/test/integration/ingest_otlp_test.go @@ -0,0 +1,105 @@ +package integration + +import ( + "context" + commonv1 "github.com/grafana/pyroscope/api/otlp/common/v1" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "os" + "strings" + "testing" + "time" + + profilesv1 "github.com/grafana/pyroscope/api/otlp/collector/profiles/v1development" + "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: "t1", + 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", + }, + }, + }, +} + +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 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}}, + }) + for _, p := range sp.Profiles { + p.DurationNanos = (time.Second * 10).Nanoseconds() + p.TimeNanos = int64(time.Unix(10, 0).Nanosecond()) + } + } + } + + client := rb.OtelPushClient() + _, err = client.Export(context.Background(), &profile) + require.NoError(t, err) + + for _, metric := range td.expectedMetrics { + + expectedBytes, err := os.ReadFile(metric.expectedJsonPath) + require.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{}) + + pprofDumpFileName := strings.ReplaceAll(metric.expectedJsonPath, ".json", ".pprof.pb.bin") + pprof, err := resp.Msg.MarshalVT() + require.NoError(t, err) + err = os.WriteFile(pprofDumpFileName, pprof, 0644) + require.NoError(t, err) + + assert.JSONEq(t, string(expectedBytes), actualStr) + _ = os.WriteFile(metric.expectedJsonPath, []byte(actualStr), 0644) + } + }) + } +} 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-unsymbolized.json b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json new file mode 100644 index 0000000000..e623a8a26a --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json @@ -0,0 +1,45401 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x4e", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 2522 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.access$getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd7", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl.dumbModeFinished(com.intellij.openapi.project.Project, com.intellij.openapi.fileEditor.ex.FileEditorProviderManager, kotlin.coroutines.Continuation)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 447 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "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)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 118 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$dumbModeFinished$1.invokeSuspend(java.lang.Object)", + "filename": "FileEditorManagerImpl.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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xcc3a29", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcc3a29" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x685b45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x685b45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xdb21d0", + "lines": [ + { + "function": { + "name": "libjvm.so 0xdb21d0" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xdb24bc", + "lines": [ + { + "function": { + "name": "libjvm.so 0xdb24bc" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6a88bb72f03b51a0", + "lines": [ + { + "function": { + "name": "ExceptionBlob" + } + } + ], + "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": "0x13d", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 102 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6f6353f7de2420d8", + "lines": [ + { + "function": { + "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x98d61", + "lines": [ + { + "function": { + "name": "libc.so.6 0x98d61" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd141d3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb3d80" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "0x98d60", + "lines": [ + { + "function": { + "name": "libc.so.6 0x98d60" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd141d3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb3d80" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "ThreadContext.kt" + }, + "line": 31 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)", + "filename": "ThreadContext.kt" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(kotlin.coroutines.CoroutineContext, java.lang.Object)", + "filename": "ThreadContext.kt" + }, + "line": 61 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "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": 270 + } + ], + "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x4b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.json.internal.StreamingJsonDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "StreamingJsonDecoder.kt" + }, + "line": 171 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", + "filename": "UTF8StreamJsonParser.java" + }, + "line": 2496 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getValueAsString()", + "filename": "UTF8StreamJsonParser.java" + }, + "line": 337 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.StdDeserializer._deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "StdDeserializer.java" + }, + "line": 262 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "BeanDeserializerBase.java" + }, + "line": 1588 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "BeanDeserializer.java" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "BeanDeserializer.java" + }, + "line": 187 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext, java.util.Collection)", + "filename": "CollectionDeserializer.java" + }, + "line": 361 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2b", + "lines": [ + { + "function": { + "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "CollectionDeserializer.java" + }, + "line": 246 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "CollectionDeserializer.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "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)", + "filename": "DefaultDeserializationContext.java" + }, + "line": 342 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x57", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)", + "filename": "ObjectMapper.java" + }, + "line": 4905 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper.readValue(java.io.InputStream, com.fasterxml.jackson.core.type.TypeReference)", + "filename": "ObjectMapper.java" + }, + "line": 3893 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.parseXmlIds(java.io.InputStream)", + "filename": "MarketplaceRequests.kt" + }, + "line": 697 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.loadCachedJBPlugins()", + "filename": "MarketplaceRequests.kt" + }, + "line": 624 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 308 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 294 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "0x80", + "lines": [ + { + "function": { + "name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", + "filename": "HashMap.java" + }, + "line": 585 + } + ], + "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": "0xb", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)", + "filename": "ExtensionsAreaImpl.kt" + }, + "line": 278 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)", + "filename": "ExtensionsAreaImpl.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl$intellij_platform_extensions(com.intellij.openapi.extensions.AreaInstance)", + "filename": "BaseExtensionPointName.kt" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Iterable com.intellij.openapi.extensions.ExtensionPointName.getIterable()", + "filename": "ExtensionPointName.kt" + }, + "line": 134 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider.lambda$getFilteredScopes$0(com.intellij.psi.search.scope.packageSet.NamedScope)", + "filename": "CustomScopesProvider.java" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider$$Lambda+\u003chidden\u003e.value(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x44", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.util.containers.ContainerUtil.findAll(java.util.Collection, com.intellij.openapi.util.Condition)", + "filename": "ContainerUtil.java" + }, + "line": 1031 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.util.containers.ContainerUtil.filter(java.util.Collection, com.intellij.openapi.util.Condition)", + "filename": "ContainerUtil.java" + }, + "line": 1006 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.psi.search.scope.packageSet.CustomScopesProvider.getFilteredScopes()", + "filename": "CustomScopesProvider.java" + }, + "line": 17 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getPredefinedScope(java.lang.String)", + "filename": "DependencyValidationManagerImpl.java" + }, + "line": 69 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getScope(java.lang.String)", + "filename": "NamedScopesHolder.java" + }, + "line": 172 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String, com.intellij.packageDependencies.DependencyValidationManagerImpl$State)", + "filename": "DependencyValidationManagerImpl.java" + }, + "line": 253 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String)", + "filename": "DependencyValidationManagerImpl.java" + }, + "line": 249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "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)", + "filename": "NamedScopesHolder.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "lines": [ + { + "function": { + "name": "com.intellij.ui.tabs.FileColorConfiguration com.intellij.ui.tabs.FileColorsModel.findConfiguration(com.intellij.openapi.vfs.VirtualFile)", + "filename": "FileColorsModel.java" + }, + "line": 240 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.lambda$getColor$0(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", + "filename": "FileColorsModel.java" + }, + "line": 210 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tabs.FileColorsModel$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 262 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 863 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ReadAction.java" + }, + "line": 66 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.getColor(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", + "filename": "FileColorsModel.java" + }, + "line": 209 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.tabs.FileColorManagerImpl.getFileColor(com.intellij.openapi.vfs.VirtualFile)", + "filename": "FileColorManagerImpl.java" + }, + "line": 153 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1f", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.tabs.EditorTabColorProviderImpl.getProjectViewColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "EditorTabColorProviderImpl.java" + }, + "line": 31 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.openapi.fileEditor.impl.EditorTabPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "EditorTabPresentationUtil.kt" + }, + "line": 88 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.openapi.vfs.newvfs.VfsPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "VfsPresentationUtil.java" + }, + "line": 41 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.openapi.vfs.VirtualFile)", + "filename": "FilePresentationServiceImpl.kt" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.psi.PsiElement)", + "filename": "FilePresentationServiceImpl.kt" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ide.util.treeView.AbstractTreeNode.computeBackgroundColor()", + "filename": "AbstractTreeNode.java" + }, + "line": 290 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ide.projectView.ProjectViewNode.computeBackgroundColor()", + "filename": "ProjectViewNode.java" + }, + "line": 361 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "com.intellij.ide.projectView.PresentationData com.intellij.ide.util.treeView.PresentableNodeDescriptor.getUpdatedPresentation()", + "filename": "PresentableNodeDescriptor.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ide.util.treeView.PresentableNodeDescriptor.update()", + "filename": "PresentableNodeDescriptor.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ui.tree.StructureTreeModel$Node.update()", + "filename": "StructureTreeModel.java" + }, + "line": 540 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d", + "lines": [ + { + "function": { + "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.invalidateInternal(com.intellij.ui.tree.StructureTreeModel$Node, boolean)", + "filename": "StructureTreeModel.java" + }, + "line": 247 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.lambda$invalidate$5(boolean, com.intellij.ui.tree.StructureTreeModel$Node)", + "filename": "StructureTreeModel.java" + }, + "line": 211 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "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)", + "filename": "StructureTreeModel.java" + }, + "line": 146 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$1(java.util.function.Function, java.util.concurrent.CompletableFuture)", + "filename": "StructureTreeModel.java" + }, + "line": 124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.get()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$Task.run()", + "filename": "Invoker.java" + }, + "line": 361 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.concurrency.CoroutineInvokerDelegate.run(java.lang.Runnable, org.jetbrains.concurrency.AsyncPromise)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 38 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker.invokeSafely(com.intellij.util.concurrency.Invoker$Task, int)", + "filename": "Invoker.java" + }, + "line": 189 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(com.intellij.util.concurrency.Invoker$Task, int)", + "filename": "Invoker.java" + }, + "line": 173 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$Background.lambda$offer$0(java.lang.Runnable)", + "filename": "Invoker.java" + }, + "line": 470 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$Background$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.util.concurrency.CoroutineInvokerDelegate.offer$lambda$2(java.lang.Runnable, com.intellij.util.concurrency.CoroutineInvokerDelegate)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.CoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend$lambda$1$lambda$0(kotlin.jvm.functions.Function0)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 97 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext$lambda$0(kotlin.jvm.functions.Function0)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 73 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 72 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend(java.lang.Object)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 96 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "libc.so.6 0x98d60" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd141d3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb3d80" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "0x1f", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()", + "filename": "CoroutineScheduler.kt" + }, + "line": 924 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x63", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()", + "filename": "CoroutineScheduler.kt" + }, + "line": 860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x62", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", + "filename": "String.java" + }, + "line": 1425 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", + "filename": "StringsJVM.kt" + }, + "line": 217 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", + "filename": "Encoding.kt" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", + "filename": "Encoding.kt" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "Primitives.kt" + }, + "line": 160 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "Primitives.kt" + }, + "line": 156 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 100 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void java.lang.String.\u003cinit\u003e(java.nio.charset.Charset, byte[], int, int)", + "filename": "String.java" + }, + "line": 532 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", + "filename": "String.java" + }, + "line": 1425 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", + "filename": "StringsJVM.kt" + }, + "line": 217 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", + "filename": "Encoding.kt" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", + "filename": "Encoding.kt" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", + "filename": "AbstractDecoder.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xbd", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "int kotlinx.serialization.cbor.internal.CborListReader.decodeElementIndex(kotlinx.serialization.descriptors.SerialDescriptor)", + "filename": "Encoding.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6f6353f7de2420d8", + "lines": [ + { + "function": { + "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readExact(kotlinx.serialization.cbor.internal.ByteArrayInput, int)", + "filename": "Encoding.kt" + }, + "line": 432 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68", + "lines": [ + { + "function": { + "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readNumber()", + "filename": "Encoding.kt" + }, + "line": 426 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "byte[] kotlinx.serialization.cbor.internal.CborDecoder.readBytes()", + "filename": "Encoding.kt" + }, + "line": 394 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", + "filename": "Encoding.kt" + }, + "line": 383 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", + "filename": "Encoding.kt" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", + "filename": "AbstractDecoder.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xbd", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 1034 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 999 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 758 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xfd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", + "filename": "HashMap.java" + }, + "line": 663 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)", + "filename": "HashMap.java" + }, + "line": 618 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdb", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", + "filename": "AbstractCoroutine.kt" + }, + "line": 97 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)", + "filename": "DebugProbesImpl.kt" + }, + "line": 545 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 46 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13d", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 102 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xad644", + "lines": [ + { + "function": { + "name": "libc.so.6 0xad644" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2f3db", + "lines": [ + { + "function": { + "name": "libawt_xawt.so 0x2f3db" + } + } + ], + "mapping": { + "start": "0x13000", + "limit": "0x5d000", + "offset": "0x13000", + "filename": "libawt_xawt.so", + "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRBackendNative.XRenderRectanglesNative(int, byte, short, short, short, short, int[], int)", + "filename": "XRBackendNative.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRBackendNative.renderRectangles(int, byte, sun.java2d.xr.XRColor, sun.java2d.xr.GrowableRectArray)", + "filename": "XRBackendNative.java" + }, + "line": 217 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MaskTileManager.java" + }, + "line": 183 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc8", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)", + "filename": "MaskTileManager.java" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)", + "filename": "XRRenderer.java" + }, + "line": 275 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", + "filename": "XRRenderer.java" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", + "filename": "ValidatePipe.java" + }, + "line": 160 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)", + "filename": "SunGraphics2D.java" + }, + "line": 2532 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)", + "filename": "RectanglePainter2D.java" + }, + "line": 211 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)", + "filename": "PaintUtil.java" + }, + "line": 402 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xde", + "lines": [ + { + "function": { + "name": "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)", + "filename": "RectanglePainter2D.java" + }, + "line": 210 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x40", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", + "filename": "RectanglePainter.java" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", + "filename": "RectanglePainter.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", + "filename": "RectanglePainter.java" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)", + "filename": "ScrollBarPainter.java" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", + "filename": "ScrollBarPainter.java" + }, + "line": 192 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe9", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 150 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paintTrack(java.awt.Graphics2D, javax.swing.JComponent)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x240", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 309 + } + ], + "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": "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": "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x324", + "lines": [ + { + "function": { + "name": "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)", + "filename": "XRTextRenderer.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa5", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", + "filename": "GlyphListPipe.java" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", + "filename": "ValidatePipe.java" + }, + "line": 165 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x42", + "lines": [ + { + "function": { + "name": "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)", + "filename": "SunGraphics2D.java" + }, + "line": 2962 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)", + "filename": "SimpleColoredComponent.java" + }, + "line": 1500 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)", + "filename": "SimpleColoredComponent.java" + }, + "line": 536 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1ea", + "lines": [ + { + "function": { + "name": "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)", + "filename": "SimpleColoredComponent.java" + }, + "line": 895 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x15eefa", + "lines": [ + { + "function": { + "name": "try_to_wake_up" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15f46f", + "lines": [ + { + "function": { + "name": "wake_up_q" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x225ea6", + "lines": [ + { + "function": { + "name": "futex_wake" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x22291d", + "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": "0x9b05e", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9b05e" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xfb2099", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb2099" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "0x1e", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", + "filename": "AbstractQueuedSynchronizer.java" + }, + "line": 645 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", + "filename": "AbstractQueuedSynchronizer.java" + }, + "line": 1060 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.locks.ReentrantLock.unlock()", + "filename": "ReentrantLock.java" + }, + "line": 494 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void sun.awt.SunToolkit.awtUnlock()", + "filename": "SunToolkit.java" + }, + "line": 271 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)", + "filename": "XComponentPeer.java" + }, + "line": 726 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor)", + "filename": "XComponentPeer.java" + }, + "line": 699 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XGlobalCursorManager.updateGrabbedCursor(java.awt.Cursor)", + "filename": "XGlobalCursorManager.java" + }, + "line": 107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x89", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)", + "filename": "XGlobalCursorManager.java" + }, + "line": 94 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9c", + "lines": [ + { + "function": { + "name": "void sun.awt.GlobalCursorManager._updateCursor(boolean)", + "filename": "GlobalCursorManager.java" + }, + "line": 205 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void sun.awt.GlobalCursorManager.updateCursorImmediately()", + "filename": "GlobalCursorManager.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.updateCursorImmediately()", + "filename": "XComponentPeer.java" + }, + "line": 695 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x31", + "lines": [ + { + "function": { + "name": "void java.awt.Component.updateCursorImmediately()", + "filename": "Component.java" + }, + "line": 3262 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void java.awt.Component.show()", + "filename": "Component.java" + }, + "line": 1730 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x30", + "lines": [ + { + "function": { + "name": "void java.awt.Window.show()", + "filename": "Window.java" + }, + "line": 1078 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void javax.swing.Popup$HeavyWeightWindow.show()", + "filename": "Popup.java" + }, + "line": 270 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void javax.swing.Popup.show()", + "filename": "Popup.java" + }, + "line": 112 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.popup.HeavyWeightPopup.show()", + "filename": "HeavyWeightPopup.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "void javax.swing.JPopupMenu.showPopup()", + "filename": "JPopupMenu.java" + }, + "line": 886 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x75", + "lines": [ + { + "function": { + "name": "void javax.swing.JPopupMenu.setVisible(boolean)", + "filename": "JPopupMenu.java" + }, + "line": 829 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.setVisible(boolean)", + "filename": "ActionPopupMenuImpl.java" + }, + "line": 164 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "void javax.swing.JPopupMenu.show(java.awt.Component, int, int)", + "filename": "JPopupMenu.java" + }, + "line": 1003 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.ui.JBPopupMenu.show(java.awt.Component, int, int)", + "filename": "JBPopupMenu.java" + }, + "line": 54 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x135", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.show(java.awt.Component, int, int)", + "filename": "ActionPopupMenuImpl.java" + }, + "line": 146 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.PopupHandler$2.invokePopup(java.awt.Component, int, int)", + "filename": "PopupHandler.java" + }, + "line": 132 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.PopupHandler.mousePressed(java.awt.event.MouseEvent)", + "filename": "PopupHandler.java" + }, + "line": 47 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", + "filename": "AWTEventMulticaster.java" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", + "filename": "AWTEventMulticaster.java" + }, + "line": 287 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x36", + "lines": [ + { + "function": { + "name": "void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Component.java" + }, + "line": 6659 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "JComponent.java" + }, + "line": 3394 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Tree.java" + }, + "line": 479 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.dnd.aware.DnDAwareTree.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "DnDAwareTree.java" + }, + "line": 46 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.Component.processEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 6427 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.Container.processEvent(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2266 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x228", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 5032 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2324 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a1", + "lines": [ + { + "function": { + "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4963 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x90", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4574 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 4518 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2310 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Window.java" + }, + "line": 2810 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 783 + } + ], + "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": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 755 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 753 + } + ], + "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": "0x49", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 752 + } + ], + "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": "0x43", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 621 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "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": "0x115", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "0x3f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 117 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.util.Set kotlin.collections.SetsKt__SetsJVMKt.setOf(java.lang.Object)", + "filename": "SetsJVM.kt" + }, + "line": 20 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.Job com.intellij.ui.DeferredIconImpl.scheduleEvaluation(java.awt.Component, int, int)", + "filename": "DeferredIconImpl.kt" + }, + "line": 200 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "DeferredIconImpl.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa5", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "RowIcon.kt" + }, + "line": 110 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)", + "filename": "IconUtil.kt" + }, + "line": 251 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2088 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2084 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void javax.swing.LookAndFeel.installProperty(javax.swing.JComponent, java.lang.String, java.lang.Object)", + "filename": "LookAndFeel.java" + }, + "line": 280 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.basic.BasicLabelUI.installDefaults(javax.swing.JLabel)", + "filename": "BasicLabelUI.java" + }, + "line": 369 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.basic.BasicLabelUI.installUI(javax.swing.JComponent)", + "filename": "BasicLabelUI.java" + }, + "line": 348 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.setUI(javax.swing.plaf.ComponentUI)", + "filename": "JComponent.java" + }, + "line": 743 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.setUI(javax.swing.plaf.LabelUI)", + "filename": "JLabel.java" + }, + "line": 274 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.updateUI()", + "filename": "JLabel.java" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x53", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.\u003cinit\u003e(java.lang.String, javax.swing.Icon, int)", + "filename": "JLabel.java" + }, + "line": 180 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.\u003cinit\u003e()", + "filename": "JLabel.java" + }, + "line": 251 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10d", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.$$$setupUI$$$()", + "filename": "PresentationModeProgressPanel.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.\u003cinit\u003e(com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", + "filename": "PresentationModeProgressPanel.java" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.show(javax.swing.JRootPane)", + "filename": "ProcessBalloon.kt" + }, + "line": 63 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.addIndicator(javax.swing.JRootPane, com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", + "filename": "ProcessBalloon.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.InfoAndProgressPanel.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", + "filename": "InfoAndProgressPanel.kt" + }, + "line": 248 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x59", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgressImpl$intellij_platform_ide_impl(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", + "filename": "IdeStatusBarImpl.kt" + }, + "line": 541 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", + "filename": "IdeStatusBarImpl.kt" + }, + "line": 464 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.doBackground(com.intellij.openapi.wm.ex.StatusBarEx)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.initializeStatusBar()", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 94 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(java.lang.Runnable)", + "filename": "EdtInvocationManager.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "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)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 68 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 56 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 41 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.progress.ProgressIndicator com.intellij.openapi.progress.impl.ProgressManagerImpl.createDefaultAsynchronousProgressIndicator(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "ProgressManagerImpl.java" + }, + "line": 149 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.util.concurrent.Future com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "CoreProgressManager.java" + }, + "line": 476 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "CoreProgressManager.java" + }, + "line": 453 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.run(com.intellij.openapi.progress.Task)", + "filename": "CoreProgressManager.java" + }, + "line": 436 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startInBackgroundWithVisibleOrInvisibleProgress(kotlin.jvm.functions.Function1)", + "filename": "MergingQueueGuiExecutor.kt" + }, + "line": 205 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess$lambda$6(com.intellij.openapi.project.MergingQueueGuiExecutor, kotlin.jvm.functions.Function0, com.intellij.openapi.project.SingleTaskExecutor$AutoclosableProgressive)", + "filename": "MergingQueueGuiExecutor.kt" + }, + "line": 153 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.project.SingleTaskExecutor.tryStartProcess(java.util.function.Consumer)", + "filename": "SingleTaskExecutor.kt" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess(kotlin.jvm.functions.Function0)", + "filename": "MergingQueueGuiExecutor.kt" + }, + "line": 148 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher.launch()", + "filename": "DumbServiceImpl.kt" + }, + "line": 116 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$queueTaskOnEdt$1.invokeSuspend(java.lang.Object)", + "filename": "DumbServiceImpl.kt" + }, + "line": 433 + } + ], + "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": "0x33", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", + "filename": "DispatchedRunnable.kt" + }, + "line": 44 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 236 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 25 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", + "filename": "TransactionGuardImpl.java" + }, + "line": 218 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x67", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.AsyncFileListener$ChangeApplier com.intellij.workspaceModel.ide.impl.WorkspaceModelRootWatcher.prepareChange(java.util.List)", + "filename": "WorkspaceModelRootWatcher.kt" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport.lambda$runAsyncListeners$0(java.util.List, com.intellij.openapi.vfs.AsyncFileListener, java.util.List)", + "filename": "AsyncEventSupport.java" + }, + "line": 90 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 258 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 258 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 853 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7c", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.openapi.vfs.newvfs.AsyncEventSupport.runAsyncListeners(java.util.List)", + "filename": "AsyncEventSupport.java" + }, + "line": 90 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1.before(java.util.List)", + "filename": "AsyncEventSupport.java" + }, + "line": 54 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e27444a4000.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec400.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 768 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 708 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x66", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 533 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6a", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.messages.impl.ToDirectChildrenMessagePublisher.publish$intellij_platform_core(java.lang.reflect.Method, java.lang.Object[], com.intellij.util.messages.impl.MessageQueue)", + "filename": "CompositeMessageBus.kt" + }, + "line": 281 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 481 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy156.before(java.util.List)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$fireBeforeEvents$20(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", + "filename": "PersistentFSImpl.java" + }, + "line": 1483 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", + "filename": "PersistentFSImpl.java" + }, + "line": 1107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x24", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.fireBeforeEvents(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", + "filename": "PersistentFSImpl.java" + }, + "line": 1482 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$processEvent$11(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", + "filename": "PersistentFSImpl.java" + }, + "line": 1088 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", + "filename": "PersistentFSImpl.java" + }, + "line": 1107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x63", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.processEvent(com.intellij.openapi.vfs.newvfs.events.VFileEvent)", + "filename": "PersistentFSImpl.java" + }, + "line": 1087 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.deleteFile(java.lang.Object, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PersistentFSImpl.java" + }, + "line": 762 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.impl.VirtualFileSystemEntry.delete(java.lang.Object)", + "filename": "VirtualFileSystemEntry.java" + }, + "line": 302 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x46", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.PsiFileImplUtil.doDelete(com.intellij.psi.PsiFile)", + "filename": "PsiFileImplUtil.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.PsiBinaryFileImpl.delete()", + "filename": "PsiBinaryFileImpl.java" + }, + "line": 209 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.lambda$doDeleteFiles$5(com.intellij.ide.util.DeleteHandler$LocalFilesDeleteTask, com.intellij.openapi.project.Project)", + "filename": "DeleteHandler.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 389 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 896 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xcc", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.doDeleteFiles(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 332 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x46", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$0(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 225 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.fileEditor.impl.NonProjectFileWritingAccessProvider.disableChecksDuring(java.lang.Runnable)", + "filename": "NonProjectFileWritingAccessProvider.java" + }, + "line": 172 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$1(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdd", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreCommandProcessor.java" + }, + "line": 226 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreCommandProcessor.java" + }, + "line": 178 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreCommandProcessor.java" + }, + "line": 168 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object)", + "filename": "CoreCommandProcessor.java" + }, + "line": 154 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.deleteInCommand(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15a", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project, boolean)", + "filename": "DeleteHandler.java" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project)", + "filename": "DeleteHandler.java" + }, + "line": 124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.projectView.impl.ProjectViewDeleteElementProvider.deleteElement(com.intellij.openapi.actionSystem.DataContext)", + "filename": "ProjectViewDeleteElementProvider.java" + }, + "line": 60 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.actions.DeleteAction.actionPerformed(com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "DeleteAction.java" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.util.function.Consumer)", + "filename": "ActionUtil.kt" + }, + "line": 374 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x28", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.ActionProcessor.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "ActionProcessor.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$actionProcessor$1.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 499 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 850 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$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": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 850 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1ca", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", + "filename": "ActionManagerImpl.kt" + }, + "line": 1173 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareWithCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", + "filename": "ActionUtil.kt" + }, + "line": 396 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 848 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x185", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 577 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 512 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(javax.swing.KeyStroke)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x146", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState()", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 444 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c9", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(java.awt.event.KeyEvent)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 306 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchKeyEvent(java.awt.event.KeyEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 606 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$22(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 565 + } + ], + "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": "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": "0x130", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 565 + } + ], + "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": "0x3f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 117 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x40f84", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x40f84" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x46148", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x46148" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x2b478", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x2b478" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x737aa", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x737aa" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x74e94", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x74e94" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x78b39", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x78b39" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x632d6", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x632d6" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x3f999", + "lines": [ + { + "function": { + "name": "libawt_xawt.so 0x3f999" + } + } + ], + "mapping": { + "start": "0x13000", + "limit": "0x5d000", + "offset": "0x13000", + "filename": "libawt_xawt.so", + "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.String sun.awt.X11InputMethodBase.resetXIC()", + "filename": "X11InputMethodBase.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "java.lang.String sun.awt.X11InputMethodBase.invokeResetXIC()", + "filename": "X11InputMethodBase.java" + }, + "line": 802 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XInputMethod.endComposition()", + "filename": "XInputMethod.java" + }, + "line": 135 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XInputMethod.dispatchEvent(java.awt.AWTEvent)", + "filename": "XInputMethod.java" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa7", + "lines": [ + { + "function": { + "name": "void sun.awt.im.InputContext.dispatchEvent(java.awt.AWTEvent)", + "filename": "InputContext.java" + }, + "line": 263 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "void sun.awt.im.InputMethodContext.dispatchEvent(java.awt.AWTEvent)", + "filename": "InputMethodContext.java" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16d", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4974 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2324 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a1", + "lines": [ + { + "function": { + "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4963 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x90", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4574 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 4518 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2310 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Window.java" + }, + "line": 2810 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 783 + } + ], + "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": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 755 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 753 + } + ], + "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": "0x49", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 752 + } + ], + "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": "0x43", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 621 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "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": "0x115", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "0x3f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 117 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "int java.util.Arrays.binarySearch0(int[], int, int, int)", + "filename": "Arrays.java" + }, + "line": 1717 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "int java.util.Arrays.binarySearch(int[], int)", + "filename": "Arrays.java" + }, + "line": 1660 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x55", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.impl.LineSet.findLineIndex(int)", + "filename": "LineSet.java" + }, + "line": 169 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.impl.DocumentImpl.getLineNumber(int)", + "filename": "DocumentImpl.java" + }, + "line": 1034 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x53", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.impl.RangeHighlighterImpl.getAffectedAreaStartOffset()", + "filename": "RangeHighlighterImpl.java" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.ex.RangeHighlighterEx$$Lambda+\u003chidden\u003e.applyAsInt(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "int java.util.Comparator.lambda$comparingInt$7b0bb60$1(java.util.function.ToIntFunction, java.lang.Object, java.lang.Object)", + "filename": "Comparator.java" + }, + "line": 494 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "int java.util.Comparator$$Lambda+\u003chidden\u003e.compare(java.lang.Object, java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.ex.MarkupIterator$2.choose()", + "filename": "MarkupIterator.java" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.editor.ex.MarkupIterator$2.peek()", + "filename": "MarkupIterator.java" + }, + "line": 82 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.peek()", + "filename": "FilteringMarkupIterator.java" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.FilteringMarkupIterator.skipUnrelated()", + "filename": "FilteringMarkupIterator.java" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.next()", + "filename": "FilteringMarkupIterator.java" + }, + "line": 40 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processRangeHighlighters(int, int, com.intellij.openapi.editor.impl.EditorGutterComponentImpl$RangeHighlighterProcessor)", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 877 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "it.unimi.dsi.fastutil.ints.Int2ObjectMap com.intellij.openapi.editor.impl.EditorGutterComponentImpl.buildGutterRenderersCache()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "it.unimi.dsi.fastutil.objects.ObjectIterable com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processGutterRenderers()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 1199 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x96", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.calcLineMarkerAreaWidth(boolean)", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 1129 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize(boolean, boolean)", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 954 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 944 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$1.exitDumbMode()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 234 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 765 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 712 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 420 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 487 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy225.handle(com.intellij.execution.services.ServiceEventListener$ServiceEvent)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl.updateDashboard(boolean)", + "filename": "RunDashboardManagerImpl.java" + }, + "line": 464 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl$8.exitDumbMode()", + "filename": "RunDashboardManagerImpl.java" + }, + "line": 229 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 765 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 712 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 420 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 493 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy139.beforePsiChanged(boolean)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.PsiManagerImpl.beforeChange(boolean)", + "filename": "PsiManagerImpl.java" + }, + "line": 434 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.PsiManagerImpl.beforePropertyChange(com.intellij.psi.impl.PsiTreeChangeEventImpl)", + "filename": "PsiManagerImpl.java" + }, + "line": 252 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$3(boolean)", + "filename": "FileManagerImpl.java" + }, + "line": 305 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 389 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 896 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$4(boolean)", + "filename": "FileManagerImpl.java" + }, + "line": 302 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.DebugUtil.performPsiModification(java.lang.String, com.intellij.util.ThrowableRunnable)", + "filename": "DebugUtil.java" + }, + "line": 534 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.processFileTypesChanged(boolean)", + "filename": "FileManagerImpl.java" + }, + "line": 300 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$1.exitDumbMode()", + "filename": "FileManagerImpl.java" + }, + "line": 81 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 765 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 712 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x97", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 430 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 493 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy75.exitDumbMode()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12$lambda$11(com.intellij.openapi.project.DumbServiceImpl)", + "filename": "DumbServiceImpl.kt" + }, + "line": 359 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$$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": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12(com.intellij.openapi.project.DumbServiceImpl)", + "filename": "DumbServiceImpl.kt" + }, + "line": 359 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.runCatchingIgnorePCE(java.lang.Runnable)", + "filename": "DumbServiceImpl.kt" + }, + "line": 753 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.access$runCatchingIgnorePCE(com.intellij.openapi.project.DumbServiceImpl$Companion, java.lang.Runnable)", + "filename": "DumbServiceImpl.kt" + }, + "line": 740 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent()", + "filename": "DumbServiceImpl.kt" + }, + "line": 359 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.decrementDumbCounter()", + "filename": "DumbServiceImpl.kt" + }, + "line": 337 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.access$decrementDumbCounter(com.intellij.openapi.project.DumbServiceImpl)", + "filename": "DumbServiceImpl.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend$lambda$0(com.intellij.openapi.project.DumbServiceImpl, com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher)", + "filename": "DumbServiceImpl.kt" + }, + "line": 103 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$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": "0x3a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend(java.lang.Object)", + "filename": "DumbServiceImpl.kt" + }, + "line": 101 + } + ], + "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": "0x33", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", + "filename": "DispatchedRunnable.kt" + }, + "line": 44 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 236 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 25 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", + "filename": "TransactionGuardImpl.java" + }, + "line": 218 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)", + "filename": "JobSupport.kt" + }, + "line": 999 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 292 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2d", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 829 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", + "filename": "AbstractCoroutine.kt" + }, + "line": 97 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 46 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x4801eb", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4801eb" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x41771a", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x41771a" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4197c7", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4197c7" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x419604", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x419604" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x418c32", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x418c32" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4128c4", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4128c4" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x471c2c", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471c2c" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x471444", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471444" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb04536", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb04536" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb07b07", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb07b07" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb070b0", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb070b0" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb05324", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb05324" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb227bb", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb227bb" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb2261e", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb2261e" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb23b5b", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb23b5b" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x47f4c0", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x34de0a", + "lines": [ + { + "function": { + "name": "htab_map_get_next_key" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3100d0", + "lines": [ + { + "function": { + "name": "map_get_next_key" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x316752", + "lines": [ + { + "function": { + "name": "__sys_bpf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x316e99", + "lines": [ + { + "function": { + "name": "__x64_sys_bpf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6e57", + "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": "0x48414d", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x48414d" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4d282c", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d282c" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4d2885", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d2885" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4d33ed", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d33ed" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x6241b3", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x6241b3" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x69a5ec", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a5ec" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x69a33c", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a33c" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xbc14ac", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc14ac" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xbc25a4", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc25a4" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb1f974", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb1f974" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x47f4c0", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xcd2f48", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcd2f48" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc53067", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc53067" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc562d7", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc562d7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6720b1", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6720b1" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x676529", + "lines": [ + { + "function": { + "name": "libjvm.so 0x676529" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xd5788c", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd5788c" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd549a8", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd549a8" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x673fb9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x673fb9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675f01", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675f01" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xca29b1", + "lines": [ + { + "function": { + "name": "libjvm.so 0xca29b1" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xca4241", + "lines": [ + { + "function": { + "name": "libjvm.so 0xca4241" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5dfc34", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5dfc34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x88e8b5", + "lines": [ + { + "function": { + "name": "libjvm.so 0x88e8b5" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xb965c3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xb965c3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675d45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xf8e0c6", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf8e0c6" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf8cb60", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf8cb60" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x752b0b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x752b0b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf8ea8a", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf8ea8a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x666ddb", + "lines": [ + { + "function": { + "name": "libjvm.so 0x666ddb" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6673d8", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6673d8" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc63596", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc63596" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc6de6d", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc6de6d" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd56aca", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd56aca" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc647db", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc647db" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x890bbe", + "lines": [ + { + "function": { + "name": "libjvm.so 0x890bbe" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4b7167", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4b7167" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4b82d5", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4b82d5" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x89f571", + "lines": [ + { + "function": { + "name": "libjvm.so 0x89f571" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd45a4e", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd45a4e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd46502", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd46502" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675d45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xd5c0c2", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd5c0c2" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5c9e9a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5c9e9a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x672338", + "lines": [ + { + "function": { + "name": "libjvm.so 0x672338" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x676529", + "lines": [ + { + "function": { + "name": "libjvm.so 0x676529" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xf991cc", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf991cc" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf99930", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf99930" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf99ea6", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf99ea6" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf9a2fb", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf9a2fb" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x892f2e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x892f2e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d0f", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d0f" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675d45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xad7b4", + "lines": [ + { + "function": { + "name": "libc.so.6 0xad7b4" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xcfc1af", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcfc1af" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x432d9e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x432d9e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcf350a", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcf350a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x63fbf0", + "lines": [ + { + "function": { + "name": "libjvm.so 0x63fbf0" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6856e1", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6856e1" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcc7df4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcc7df4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcc84e2", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcc84e2" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5d2745", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5d2745" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4eb59b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4eb59b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecd89", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecd89" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6c4a6e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6c4a6e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6c5c47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6c5c47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x50e19d", + "lines": [ + { + "function": { + "name": "libjvm.so 0x50e19d" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c370", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c370" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x528811", + "lines": [ + { + "function": { + "name": "libjvm.so 0x528811" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c840", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c840" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c53e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c53e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c70a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c70a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec547", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec547" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec9e8", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec9e8" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecc19", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecc19" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x559925", + "lines": [ + { + "function": { + "name": "libjvm.so 0x559925" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5625ba", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5625ba" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x562e27", + "lines": [ + { + "function": { + "name": "libjvm.so 0x562e27" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x564b15", + "lines": [ + { + "function": { + "name": "libjvm.so 0x564b15" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ebfec", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ebfec" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec90f", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec90f" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecc19", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecc19" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x55be84", + "lines": [ + { + "function": { + "name": "libjvm.so 0x55be84" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x564a47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x564a47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ebfec", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ebfec" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec90f", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec90f" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecc19", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecc19" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x67fc1b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67fc1b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9f705e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9f705e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()", + "filename": "AccessController.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.security.AccessControlContext java.security.AccessController.getContext()", + "filename": "AccessController.java" + }, + "line": 1006 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)", + "filename": "AWTEvent.java" + }, + "line": 120 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)", + "filename": "InvocationEvent.java" + }, + "line": 291 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)", + "filename": "InvocationEvent.java" + }, + "line": 177 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void sun.awt.GlobalCursorManager.updateCursorLater(java.awt.Component)", + "filename": "GlobalCursorManager.java" + }, + "line": 120 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XGlobalCursorManager.nativeUpdateCursor(java.awt.Component)", + "filename": "XGlobalCursorManager.java" + }, + "line": 60 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xbc", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XWindow.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XWindow.java" + }, + "line": 1104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XComponentPeer.java" + }, + "line": 74 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x88", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XWindowPeer.java" + }, + "line": 2364 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf6", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", + "filename": "XBaseWindow.java" + }, + "line": 1220 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XWindowPeer.java" + }, + "line": 2360 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf6", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", + "filename": "XBaseWindow.java" + }, + "line": 1220 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x54", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)", + "filename": "XBaseWindow.java" + }, + "line": 1178 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)", + "filename": "XToolkit.java" + }, + "line": 917 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x218", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XToolkit.run(boolean)", + "filename": "XToolkit.java" + }, + "line": 1064 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XToolkit.run()", + "filename": "XToolkit.java" + }, + "line": 946 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x73", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.util.text.StringUtilRt.equal(java.lang.CharSequence, java.lang.CharSequence, boolean)", + "filename": "StringUtilRt.java" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.CharSequence, java.lang.CharSequence)", + "filename": "HashingStrategy.java" + }, + "line": 52 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.Object, java.lang.Object)", + "filename": "HashingStrategy.java" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object, com.intellij.util.containers.HashingStrategy)", + "filename": "ConcurrentHashMap.java" + }, + "line": 6253 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object)", + "filename": "ConcurrentHashMap.java" + }, + "line": 6249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.concurrency.ConcurrentHashMap.get(java.lang.Object)", + "filename": "ConcurrentHashMap.java" + }, + "line": 917 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeAssocTable.findAssociatedFileType(java.lang.CharSequence)", + "filename": "FileTypeAssocTable.java" + }, + "line": 156 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$FileTypeWithDescriptor com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.lambda$getFileTypeByFileName$12(java.lang.CharSequence)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 720 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.openapi.util.ThrowableComputable)", + "filename": "ConcurrencyUtil.java" + }, + "line": 246 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.withReadLock(com.intellij.openapi.util.ThrowableComputable)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 1816 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2d", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.CharSequence)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 720 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.String)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 711 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3d", + "lines": [ + { + "function": { + "name": "boolean com.goide.vgo.project.VgoLibraryRootsProvider$VgoDependenciesLibrary.shouldExclude(boolean, java.lang.String, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier)", + "filename": "VgoLibraryRootsProvider.java" + }, + "line": 114 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "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)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition.lambda$transformToCondition$3(java.util.Collection, com.intellij.openapi.vfs.VirtualFile)", + "filename": "SyntheticLibrary.java" + }, + "line": 236 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition$$Lambda+\u003chidden\u003e.value(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "boolean com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor.registerFileSets$lambda$2(com.intellij.openapi.util.Condition, com.intellij.openapi.vfs.VirtualFile)", + "filename": "VgoDependencyWorkspaceFileIndexContributor.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "boolean com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.isExcluded(com.intellij.openapi.vfs.VirtualFile)", + "filename": "workspaceFileSets.kt" + }, + "line": 328 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "int com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", + "filename": "workspaceFileSets.kt" + }, + "line": 338 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x39", + "lines": [ + { + "function": { + "name": "int com.intellij.workspaceModel.core.fileIndex.impl.MultipleStoredWorkspaceFileSets.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", + "filename": "workspaceFileSets.kt" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf4", + "lines": [ + { + "function": { + "name": "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)", + "filename": "WorkspaceFileIndexDataImpl.kt" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "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)", + "filename": "WorkspaceFileIndexImpl.kt" + }, + "line": 267 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.roots.impl.ProjectFileIndexImpl.isExcluded(com.intellij.openapi.vfs.VirtualFile)", + "filename": "ProjectFileIndexImpl.java" + }, + "line": 67 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile$lambda$2(com.intellij.openapi.roots.ProjectFileIndex, com.intellij.openapi.vfs.VirtualFile)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$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.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "actions.kt" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$4(com.intellij.openapi.util.Computable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 260 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 314 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 260 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)", + "filename": "ApplicationImpl.java" + }, + "line": 858 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)", + "filename": "actions.kt" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x75", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots$lambda$0(com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean, com.intellij.openapi.vfs.VirtualFile)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter.lambda$and$0(com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.vfs.VirtualFile)", + "filename": "VirtualFileFilter.java" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore$1.visitFileEx(com.intellij.openapi.vfs.VirtualFile)", + "filename": "VfsUtilCore.java" + }, + "line": 287 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 303 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "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[])", + "filename": "VfsUtilCore.java" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.vfs.VfsUtilCore.iterateChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.roots.ContentIterator)", + "filename": "VfsUtilCore.java" + }, + "line": 277 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.SourceRootHolderIteratorBase.iterateFiles(com.intellij.openapi.project.Project, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter)", + "filename": "SourceRootHolderIteratorBase.java" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d", + "lines": [ + { + "function": { + "name": "void com.intellij.util.indexing.FileBasedIndexEx.iterateIndexableFiles(com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.project.Project, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "FileBasedIndexEx.java" + }, + "line": 530 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1f", + "lines": [ + { + "function": { + "name": "com.goide.stubs.index.GoIdFilter com.goide.stubs.index.GoIdFilter.lambda$createIdFilter$3(com.intellij.openapi.project.Project, com.intellij.openapi.util.Condition)", + "filename": "GoIdFilter.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.goide.stubs.index.GoIdFilter$$Lambda+\u003chidden\u003e.call()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.FutureTask.run()", + "filename": "FutureTask.java" + }, + "line": 317 + } + ], + "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": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 227 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 215 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", + "filename": "ThreadPoolExecutor.java" + }, + "line": 1144 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", + "filename": "ThreadPoolExecutor.java" + }, + "line": 642 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 735 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "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": "0xf", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "boolean kotlin.text.StringsKt__StringsKt.contains(java.lang.CharSequence, char, boolean)", + "filename": "Strings.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "boolean kotlin.text.StringsKt__StringsKt.contains$default(java.lang.CharSequence, char, boolean, int, java.lang.Object)", + "filename": "Strings.kt" + }, + "line": 1170 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "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)", + "filename": "GitHubTableMarkerProvider.kt" + }, + "line": 20 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.util.List org.intellij.markdown.parser.MarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", + "filename": "MarkerProcessor.kt" + }, + "line": 47 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "java.util.List org.intellij.markdown.flavours.commonmark.CommonMarkMarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", + "filename": "CommonMarkMarkerProcessor.kt" + }, + "line": 79 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5a", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.parser.LookaheadText$Position org.intellij.markdown.parser.MarkerProcessor.processPosition(org.intellij.markdown.parser.LookaheadText$Position)", + "filename": "MarkerProcessor.kt" + }, + "line": 75 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x52", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.doParse(org.intellij.markdown.IElementType, java.lang.String, boolean)", + "filename": "MarkdownParser.kt" + }, + "line": 67 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.parse(org.intellij.markdown.IElementType, java.lang.String, boolean)", + "filename": "MarkdownParser.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.performParsing(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + }, + "line": 42 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parse(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager$Companion.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4a", + "lines": [ + { + "function": { + "name": "void org.intellij.plugins.markdown.lang.lexer.MarkdownToplevelLexer.start(java.lang.CharSequence, int, int, int)", + "filename": "MarkdownToplevelLexer.java" + }, + "line": 52 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.lexer.DelegateLexer.start(java.lang.CharSequence, int, int, int)", + "filename": "DelegateLexer.java" + }, + "line": 25 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void com.intellij.lexer.LayeredLexer.start(java.lang.CharSequence, int, int, int)", + "filename": "LayeredLexer.java" + }, + "line": 75 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.start(java.lang.CharSequence, int, int, int)", + "filename": "ValidatingLexerWrapper.java" + }, + "line": 38 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(java.lang.CharSequence)", + "filename": "LexerEditorHighlighter.java" + }, + "line": 432 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(java.lang.CharSequence)", + "filename": "LexerEditorHighlighter.java" + }, + "line": 413 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x42", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.createHighlighter(boolean)", + "filename": "EditorHighlighterUpdater.kt" + }, + "line": 154 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.updateHighlighters$lambda$0(com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater)", + "filename": "EditorHighlighterUpdater.kt" + }, + "line": 139 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater$$Lambda+\u003chidden\u003e.call()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 889 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 618 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 581 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$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": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$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": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 140 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)", + "filename": "ProgressManager.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.ProgressManager$$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.progress.impl.CoreProgressManager.lambda$runProcess$1(java.lang.Runnable, io.opentelemetry.api.trace.Span)", + "filename": "CoreProgressManager.java" + }, + "line": 223 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(io.opentelemetry.api.trace.Span, kotlin.jvm.functions.Function1)", + "filename": "trace.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x44", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)", + "filename": "CoreProgressManager.java" + }, + "line": 222 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager$$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.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(java.lang.Runnable)", + "filename": "CoreProgressManager.java" + }, + "line": 674 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd8", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreProgressManager.java" + }, + "line": 749 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "CoreProgressManager.java" + }, + "line": 705 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "CoreProgressManager.java" + }, + "line": 673 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressManagerImpl.java" + }, + "line": 79 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "CoreProgressManager.java" + }, + "line": 203 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressManager.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 137 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x92", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 581 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x28", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 480 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 495 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 227 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 215 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", + "filename": "ThreadPoolExecutor.java" + }, + "line": 1144 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", + "filename": "ThreadPoolExecutor.java" + }, + "line": 642 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 735 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "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": "0xf", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": [ + 100000000 + ] + }, + { + "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": [ + 100000000 + ] + }, + { + "locations": [ + { + "address": "0x12495b0", + "lines": [ + { + "function": { + "name": "_raw_spin_unlock_irqrestore" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2066db", + "lines": [ + { + "function": { + "name": "hrtimer_start_range_ns" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124808f", + "lines": [ + { + "function": { + "name": "schedule_hrtimeout_range_clock" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1248152", + "lines": [ + { + "function": { + "name": "schedule_hrtimeout_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1247d14", + "lines": [ + { + "function": { + "name": "usleep_range_state" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16054b", + "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": [ + 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": "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": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x11e6fe", + "lines": [ + { + "function": { + "name": "set_placement_list" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1202b1", + "lines": [ + { + "function": { + "name": "nouveau_bo_placement_set" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228ac", + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x1d1d5", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x1d1d5" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14c9cf", + "lines": [ + { + "function": { + "name": "Xorg 0x14c9cf" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x275a2", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x275a2" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x2746c" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "Xorg 0x140e6f" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x100ef", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x100ef" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14bb06", + "lines": [ + { + "function": { + "name": "Xorg 0x14bb06" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x13f976", + "lines": [ + { + "function": { + "name": "Xorg 0x13f976" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "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": "0x218ff0", + "lines": [ + { + "function": { + "name": "do_setitimer" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2197aa", + "lines": [ + { + "function": { + "name": "__x64_sys_setitimer" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6648", + "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": "0xe29da", + "lines": [ + { + "function": { + "name": "libc.so.6 0xe29da" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x1e4a68", + "lines": [ + { + "function": { + "name": "Xorg 0x1e4a68" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x1db31e", + "lines": [ + { + "function": { + "name": "Xorg 0x1db31e" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x627e9", + "lines": [ + { + "function": { + "name": "Xorg 0x627e9" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x28414", + "lines": [ + { + "function": { + "name": "libc.so.6 0x28414" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x274ff", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x274ff" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x2746c" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "Xorg 0x140e6f" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "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": "0x124dec", + "lines": [ + { + "function": { + "name": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x17ba6", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x17ba6" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x18bf8", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x18bf8" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14b73c", + "lines": [ + { + "function": { + "name": "Xorg 0x14b73c" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x141792", + "lines": [ + { + "function": { + "name": "Xorg 0x141792" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x100ef", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x100ef" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14bb06", + "lines": [ + { + "function": { + "name": "Xorg 0x14bb06" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x13f976", + "lines": [ + { + "function": { + "name": "Xorg 0x13f976" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1243691", + "lines": [ + { + "function": { + "name": "mutex_lock" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d5a9", + "lines": [ + { + "function": { + "name": "gf100_vmm_invalidate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d7ce", + "lines": [ + { + "function": { + "name": "gf100_vmm_flush" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x85937", + "lines": [ + { + "function": { + "name": "nvkm_vmm_iter.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8642e", + "lines": [ + { + "function": { + "name": "nvkm_vmm_ptes_get_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x866a4", + "lines": [ + { + "function": { + "name": "nvkm_vmm_map_locked" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x885dd", + "lines": [ + { + "function": { + "name": "nvkm_vmm_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x837d6", + "lines": [ + { + "function": { + "name": "nvkm_mem_map_dma" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9107c", + "lines": [ + { + "function": { + "name": "nvkm_uvmm_mthd_map.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x91e26", + "lines": [ + { + "function": { + "name": "nvkm_uvmm_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": "0x4a1e", + "lines": [ + { + "function": { + "name": "nvif_vmm_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124f2b", + "lines": [ + { + "function": { + "name": "nouveau_mem_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x126a83", + "lines": [ + { + "function": { + "name": "nouveau_vma_new" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1231a4", + "lines": [ + { + "function": { + "name": "nouveau_gem_object_open" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca6c96", + "lines": [ + { + "function": { + "name": "drm_gem_handle_create_tail" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca6da4", + "lines": [ + { + "function": { + "name": "drm_gem_handle_create" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123d0c", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_new" + } + } + ], + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x433a", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x433a" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa0ecf1", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa0ecf1" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0xa593e4", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa593e4" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x5120", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5120" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa59b08", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa59b08" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x3baaa1", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x3baaa1" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x171ff", + "lines": [ + { + "function": { + "name": "libkwinglutils.so.5.27.11 0x171ff" + } + } + ], + "mapping": { + "start": "0xa000", + "limit": "0x1d000", + "offset": "0xa000", + "filename": "libkwinglutils.so.5.27.11", + "build_id": "b79e87745522e8a9559a65a18dc70d96dafcb154" + } + }, + { + "address": "0x270304", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x270304" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x284412", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x284412" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x275ea0", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x275ea0" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1be5b7", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1be5b7" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1c3052", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1c3052" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1c33bc", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1c33bc" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x312e15", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x312e15" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x172323", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x172323" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1c912e", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1c912e" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x312e15", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x312e15" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x31710c", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x31710c" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x30624a", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x30624a" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x16bd44", + "lines": [ + { + "function": { + "name": "libQt5Widgets.so.5.15.13 0x16bd44" + } + } + ], + "mapping": { + "start": "0x14e000", + "limit": "0x545000", + "offset": "0x14e000", + "filename": "libQt5Widgets.so.5.15.13", + "build_id": "bfe07edc9e95f586e665ab542d433386d87d6409" + } + }, + { + "address": "0x2d8117", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x2d8117" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x3345aa", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x3345aa" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x334ed8", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x334ed8" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x5d5b4", + "lines": [ + { + "function": { + "name": "libglib-2.0.so.0.8000.0 0x5d5b4" + } + } + ], + "mapping": { + "start": "0x1e000", + "limit": "0xbe000", + "offset": "0x1e000", + "filename": "libglib-2.0.so.0.8000.0", + "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" + } + }, + { + "address": "0xbc716", + "lines": [ + { + "function": { + "name": "libglib-2.0.so.0.8000.0 0xbc716" + } + } + ], + "mapping": { + "start": "0x1e000", + "limit": "0xbe000", + "offset": "0x1e000", + "filename": "libglib-2.0.so.0.8000.0", + "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" + } + }, + { + "address": "0x5ca52", + "lines": [ + { + "function": { + "name": "libglib-2.0.so.0.8000.0 0x5ca52" + } + } + ], + "mapping": { + "start": "0x1e000", + "limit": "0xbe000", + "offset": "0x1e000", + "filename": "libglib-2.0.so.0.8000.0", + "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" + } + }, + { + "address": "0x335278", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x335278" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x2d6a7a", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x2d6a7a" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x2df3e7", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x2df3e7" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x47ba0", + "lines": [ + { + "function": { + "name": "kwin_x11 0x47ba0" + } + } + ], + "mapping": { + "start": "0x3e000", + "limit": "0xef000", + "offset": "0x3e000", + "filename": "kwin_x11", + "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x490e4", + "lines": [ + { + "function": { + "name": "kwin_x11 0x490e4" + } + } + ], + "mapping": { + "start": "0x3e000", + "limit": "0xef000", + "offset": "0x3e000", + "filename": "kwin_x11", + "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x225dd3", + "lines": [ + { + "function": { + "name": "futex_wake" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x22291d", + "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": "0x98fc6", + "lines": [ + { + "function": { + "name": "libc.so.6 0x98fc6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xa1ac1", + "lines": [ + { + "function": { + "name": "libc.so.6 0xa1ac1" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x6a2a5", + "lines": [ + { + "function": { + "name": "firefox-bin 0x6a2a5" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x22000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x2b07a52", + "lines": [ + { + "function": { + "name": "libxul.so 0x2b07a52" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5ecf8", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5ecf8" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5d620", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5d620" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a83c8d", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a83c8d" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x197a1", + "lines": [ + { + "function": { + "name": "libnspr4.so 0x197a1" + } + } + ], + "mapping": { + "start": "0x12000", + "limit": "0x35000", + "offset": "0x11000", + "filename": "libnspr4.so", + "build_id": "caa869f624148b1ec093de72d7992781a5411334" + } + }, + { + "address": "0x5dd1f", + "lines": [ + { + "function": { + "name": "firefox-bin 0x5dd1f" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x22000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x40ca45", + "lines": [ + { + "function": { + "name": "vma_interval_tree_subtree_search" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x40d2b9", + "lines": [ + { + "function": { + "name": "vma_interval_tree_iter_first" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41ea8e", + "lines": [ + { + "function": { + "name": "unmap_mapping_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdc4", + "lines": [ + { + "function": { + "name": "ttm_bo_unmap_virtual" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1762", + "lines": [ + { + "function": { + "name": "ttm_bo_handle_move_mem" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2361", + "lines": [ + { + "function": { + "name": "ttm_bo_validate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2532", + "lines": [ + { + "function": { + "name": "ttm_bo_init_reserved" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1204a4", + "lines": [ + { + "function": { + "name": "nouveau_bo_init" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123b6c", + "lines": [ + { + "function": { + "name": "nouveau_gem_new" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123cbc", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_new" + } + } + ], + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x433a", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x433a" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa0ecf1", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa0ecf1" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0xa593e4", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa593e4" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x5120", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5120" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x9fb761", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x9fb761" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x3eeb41", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x3eeb41" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + } + ], + "values": [ + 50000000 + ] + } + ], + "time_nanos": "1735810168549000000", + "duration_nanos": "1735810167549000000", + "period": "1000000000" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin new file mode 100644 index 0000000000000000000000000000000000000000..103eb6e8b464bb16932df9689dd631a5beb53343 GIT binary patch literal 192471 zcmeEvcR*LkwSR7(Z@J$)-(qst>?S6gYLZQ|NnU#0^xoUcOW!1$vYYItzq}WuDMe6v zlU@a-hzbZQ2r429D0UG=#e&$dfTF*1&Ro8@N#0BOZQ2Wed_Qx~^qKF>oHJ*dd(SbC z``2!t+xXrSPyO_v$G#m<+|p~@e1`sUKyxc^dCP0vFL%4h$K&7l(W8O;-SdC&#FLLd z_QRh(_2|!E_02cD;Wdwa8SzQ?6^q~e5dS-^h8-RPox?Bkz!I51r@(Nu>)iUxWYHB;F8 z*f023(T8TPkTBYc%!%;^a=M=lN}QvcVHQe7QnB=~YjpqK$_jFQfSr=K4_#TAR4!FW zmEc@nIdEk?Ie&p&l|*(a=?`{CUCyCAotPYGppR9%4z|~#-?+%(KFZa~lRanXId+>vv0nm*PI?OsLyPT)Q^rt@!Oc&B=HHJ3O|@IKaOJk6=2 zz2l%L$pfsB@dq%}Jx!>$Int@v`K+JuuZawc|6_l`OaReB&yCW%AoZfIB>vV}K zck(Qkha7cAe~~k8g4saQjV&s_5s=fT^^@fR=kK`3sl91OxY3;S zi?%(}5-%mTJ8t)}oBpS@wcTsBhJ$4U_-91X#Q)LVJ|IR|$p6^@|G+(|jUB29=f5t< z-zb8Kq2^}Yu1wKH=d;nEXlL5THfXKd!>*e>*H2bE?Q<$9I*Abb_!YY1OQ_y)o^5x#}+ZG=Y= zzJu^xgzq6dhVXraA0Ye?;YSFMBRqldV}zd|Jc;lW!cP%?hVXNQUm*Mv;a3R1M)*&J z-yr-K!ha+DcD}k$j*t)+5k?Y55k?cn5XKTNCR{=oM;K3-K$u9llrV`fnQ$55a>5kC zRKhgEbixe6Ou{U}Y(fwuAaA*Zc@nn#%@Hz>*qo@_5${@HEL8KQ0%?8-Itd5c-#{nf z3)n)nL@FiQLg*!hsvS`%EpRPVtE83Gq29$Kh9wN|UZ_?}H5Bdei@|5L8~W3W7kCz` ztEANw!7xUEw$cLcLbX<^Biqf8g+jxQ*eowF7pe`?8j2#~^N@uy8S?P?1-^x9qqJ6J z_(ABYmm$5)4=%74s_Ufn!um51M?d)9{Fw!Oq1q%hi>M8VTci!b)`Bd* z6>O~qfrV^}BD_p^h43oj1mQKp>x4H5ZxT)tP7&TByiGVwc!%&VVT4Sbg)ovZiZGfmhA@_J zG2s%zIKp_s1j0nZrG!a@$%M-YmlLKCrV^$RrW0lmW)fx*W)tQR<`U)+t{}`OEFdf- zEFvr>EFml5h6CNNuNO*|wFyRrxql80*#|VcBj}x9C93ebOc#7~e;V9u5!n1_u2+tFa z5ndo1C%i~_iSRPv6~e286NJ|YuM%< zEG8@=EF~->EGMiWtR$==TuE3>SVOpqa5Z5qVI5&TVFTeB!bZZigzE^`6E+bx6Sfd; zAZ#UUBiu;1iEuMvJ7EXm7Q#-#F2b#Z+X%N4b`$O(>>=Dq*h{#Ja5rHeVL#yj;U2=h zgoA|p2=@~nAUsHTi10As5yGQ{Lxjf&hY61po**0{JV|(p@U(*byHE#qxDYtCz96_z z9aYYd?XU{A&jI$UE(k4D&no9A#CgIo!V84sgck`fiI5Dq?i+z)vIX-Ns+W~3%KYa* zDyKrgNUy&ic=V~zf@d#OuPPJdeKRIxLh|Z@=PXpODc32gTZFd>rwQ*6-X)AssdErU z5=Ie56UGq65-uiOLKsIFPnbZslrV`fnQ$55a>5kCRKhgEbixe6Ou{U}Y{DGET*5rU z6@>YO1%!o!MTEtKC4{AfWrXE~6@-<9RfH=Es|jleR}roztR<`?tS4+BTtnDMxR!7o z;d;U*!e+u2!VQG2gl&Wy2{#dLCTu6{AlyRON!UfWm2ey3cEWDL9>Sf3y9xUU`w90E z?k7Azc#!ZA;bFofghvU72#*mC6CNi#K{!HqlJFGaX~I#$GlXXe&k>#{93#9yI8Jzx z@Dkx=!YhPV2`31z5nd;}L3opJl5mRf7U6BeX~H{%cL^gjYR`m`gi(aigfWD%go_E6 z5XKS46DANQ5-uf7B1|S+M!1|Xg)o&cjWC@sgD{gYi!hrohcK5gk8lNHK4Af2Az=|= zF<}W|DPb95Ibj81C1DleO2TTw8p2hCs|jlf>j>)!8wl4BHWIESTt~Q`u!*plu!XRV za3kR+!p(&3gdN%oee7Ahv>@I!UuM!m=~+bAMn<@SmXUUW;(IvfB?~2)KBsTer<=)q zPgIwV*7zN9Ys?T{6bJ~@JOd(9K})Ow<~X#*KM%CVmqRdg*SQ3=&c`*RgUsL~#gRM5 zkLRs@2qJ;_42nA~vrC;x=TP_TcXQ8V*gompj_`Np_z>j<^VNO6o$`pKNKJp~Oer=r zeHcG6$@sqM4TrAo?)E^E43jh&<7~dlT>KS+M1`fw-2DAW`ru;$L%e-QMjDti%sQjjl#uBNgV^Y0<)fe#hDzC^ga1oXrzd#T8l z2R<;Gm!X@Fy$selH1=|S%*n&c!LP;^@*e7)CVXKsui(!U@xB7IrcPLsy^?z(|S;Qmhj0(AGWcX6EXfkFR~kG&g;r~wYsIOAjQ;SU1+ z9)1=EH1w}Qa2!o<(dhXPFq$GK>B$0dPiBuG=P=nLd^G-xK)!c|%--|`Am2AbHedV< zkT9+a&-K$ten61V;-k|a2J(Y5WLL>Yfc(%5d3ow%KtglCu+QS<>GOg7$P77EDFOLW zBz^3?ycGY5kMXaGntLBF!+-VT9FoGCd_Oc|jeP=a1^og39-u$TQ=TK}57H?8DSpHw z=nwJNgZrm>7X338`!I(|g2q0>?>c|YNBC!f{w%-a{52ot8qlBPXNk5TC!o{O*ys64 zCSv?J{|(Sz;43Ky7UX3kGKMem38&wEl9*q8Z!C&f?mcLV+Je470K zffPOii;Eij3U6{ee3rwUL1X{HJENNIMKJ1j@^V9&p#xFUU z{GBL#kbjKf>-?(Y;di3+L3sk;;TwF^DaDtd|7h%+eA~;h8Z0PJ2`2e1zRVQ$^6&g1 zpuf#;c!h_raL^oU>`~t2So{YF7hv%np6yiBSLwg`F5m7JA-={z!qV9Hc&d}e*Lgff z@faU`sYv4+u#Tm%@ADf@ReqDCk{|HX4*e}yW6{_TdAvh^n})z2@ns~{n2;G9xE>cH zl?7P=hNH13!r{M5W%x1gal(I(e+b-v!qXl4F<=rJdy+45Mv?EsKc%v#_@kITll_23 z?w`((Kjbd~*Prnp2-hFM;*iRIKI8g0416l=CwQ(X+7tZM5cMzlMyGOq%;y39E56i8 z`X|(?e$5X!|L~Jk^#9}o4*h2p-3NKbf9p4nJm+ISsH=55Z9 z_H$}5zvUy8KQCk)R+CtS(|mpjt5iB$B=LikT?;ZE0*gqApK$#D8j7p1D98VQLhf}I zE%9_}!CuIT3eGW3WBV^ET&%=xtQ;?716>z8fq%=t4uO||?wu?+xUgB@W7%a?*4=fTSP6GvpoNy0>Nu0@oiMhd4mO7EfNR-DUiRb@;JX#ELhde!5 z;y=P9IAo9i7GhjB6M$nDKL|Fkp!Fo6!RR}d91FHujXFO(>*j5`mOGMY)Lo{UFLv;2>&w8tALTTHHt+VnTVqJVY zG-StR@%4L%y5si{rRDb!8+LD>4U@m~9^&xzdx*_v3n)W7`gRqpzO(AE z#ns4_Xi*amvAGM@o!P3ehm=dOj-jyCj)!OQ6R-yN=QNtJT#&u6LBPOr_ZmdweAf+QWAXmd^RkZKQ7x4md4^c}|xA;>P+;#}^Dd7Z(9vz!17sv6sEU6|fgi*$XMUf=Knpc}&U>g`Cc3Dc#$NMkjN_>LyL z5a_jGdf!Fl5$nSA?ZOuUy*^Brw<6sXrk}xHiJdqfR^AoX9FD#^AKPE@vK4r~6L@toXc;ipdpr@5c%sWm4_tP1wma$NNW63E z%i$oIk=QJq@GBE~XNdzV1mOne#~Z6b%EA=kJ0t1U;qQSovZn-ZmfjP3YA-f_C*ILf zZ0i_2PvV6){P_Jp@iXvovM7K)ke^K*g{?PiGlUk*_2L<%u`HsYmAApZ6oqw!EmjP` zb`^zf30oXIK^9nhB8t9h^zf(i>!IP7h`h@@yIm++JrEq?!1_fwF<;`(26=9)#Iek1 zQy{@EHJxpfcnq`#w1J%|Ua;9N@lp~#IWSq6nCh$>25v`EEEe(Xka#kTei*7m;%@>! zJrdvN#8ZlLpw4zmd;{57z-~zp?3Ki{gag0jP$?SQCGoFfG=5-p95&PFY_|l{O0=?o z+mU{_PZINT4(yI1?uX{+B(+lFuZ2JZ65j|C2xg~Rg6Wga_DH;g=7=0v9_*>r*8;s6Z-$AI4u)AnEKdNTJRwp;3ZaipGve{NFHUKa9Z~_8{o&DD*$) zzgY)G2Ad)1o=#n?7omb3^rpDFL!JpZfvR$cdQe4m-tUFNPNoq$9^|8ANw(>6Mn^$>HqS< z92+(D&(QSN!p@~beB%=TrpPz+Eu8LMl=xMry+Yr@vR#6)oosxd%lI?22RMaB<-l+F zB`5gPr_da`>LZZAWr<&)IW%X`Rk06WfdP_ies>oAI}=-+g{PyM=D!{PKF}T@JvR$? zGzByZe<#!k%y(%j{FlzcVac9m;R(*z`hRv7j(qg^|IsBvj-2nE@JC*SVcg+3!1=Jt zO~5!uYDmt2^L-9%u1OrHY&aGI=R-f&B_8i^CE$FY0h=43a-jxcGT?lu9J=WQ0lwz~ z50f+8*hIdEle#H~NdVJBh1xAiD6TE!dB|mNOZ?NAs)Z~MbvDz|%%THuJmf}qB(Vx; zG2nQp=D92Jmx+u5$NM6r3R_$+IBX6$-iyIzk?bg`IC4DFyve-Qg`xb&@L>O}&Z1;~ z)+rxwJQP8qW!^%pkR!*#E)XO0I>!b$9&(XbnV+LFnG84{Yzk+KiKUsy?_L7r5{CrV z20O@EoWt;dujvpxUgp!zfD3%>17MRNbJV6_&VaAMGAJnFWWL4ec);1-2R2J(UP?9= zayG2EBv~xRdYwXg@Dr8;E+MvJmVn#>!VvH)8}PL?k7+fHKyE@y*HhRo}o{{q+?gGe%+NPx#- zHD}5Emg51K5;kX{iRZ|XEbx#c^B5-;=t6$5$(;$pu?wM+H4iorI4uOakQ;1P$b9u5 zP8WKV4?N_{Jj3CD(4(+81v0OpAQto}_-iy)DDzKYqxf62GCv;1gU#gB%vMu@|8O(= zoxcWpJ1PQ-oLZd{9i$lAp;LV5?O3ZNMEXFRjtw{Vuc^g`;RJhG>Hm-ij>8KIv}Lj* z$pSH-%aU_}#DKCYird4D2ve;h^0t^D#=q!l4Q! zy%w1}lc`jhhU^V8Kje6UF#-8St30y`07JrS!Jiqw+}RIc-;weD4gITU514+6E38-%N&%TD4t{s zcGBUn2N0Q%&25o+r1N+Ej%WoE)C<5vr_5)>Q;?ugwCb7(!cl@k91AXR)HYBIw~_Zz_m_}y_5n@kieQ1ssAcmSya zg^S%X@1YGiCQ2137W6qDDrHi2_QRG`XD$LF#fu=wfXsJL5RNhhMzTldo5|0g5J|Pn zzXd_|%6yX(EeIZ{OdFK>lv6;s&H$y+eKX=Js2XMdeyG&_vRD-7tX8IZ!U2$b9A*!q z1*&Eb%6vDKz+@m=V1W)f1^TPV)_xFII4l%{wh~Myr8SsaogIP7r_B9cRzPaGA3Pid z;o8YPNG&L;49R@&9}40}AqEcN>Fk)yPdH&fiosZhVaDOufSiIt(Q#Oeb8J9R!6tkH zhFHf21QiT5GLw>@p`?O;<4GAdONv$vq6&7VQ_#4D1&As?2aD4(f19w_h)HQ|6gmxB zfHG5teN+(38JST z69)+8_io;>uz#Y$@Pa&}Fof=js)X^`D4=_W!cq9KZ^9WGP$@!(p_w+v-ifnuxELeR z$w;>lM=!%v)altfL_$}b>8v06C``H_)K!_cI~@=DAnqHPfbQzpKp#W}?zNeTvLAXJ zhl6aOwUBu$CFaLo*NxNM8}QdTZKh8&=$kSha$hkhnyzLsqM1RZ3Z&_N3Sb2>=a zk96;Dr8ym>VAp^8R(=!!qNn#k6BQx1r5y}^kKJtvep;b+_5DeU%+XC@DSjd-4^IJ;W@7Q#QSMmObu7Wl;!{HtR1c_d{Ssvd5IEe3MQ z;x<{}&gk@_zjWU;97fjJw9M0-VIG7hT$Q^c^W~0I1+o!}KX+w*(Bau28=+_#p*UJ@ zj%#~oS2uChp$xh+j4jX{UA~J@> zinD_N7W!mbK3byi3}8D3EPul65I3vDDUOE1!r9;(VMLEtgcgM3WDuiCP&jUhLj?s) z25~Bv=y)-4E{MA3rOw0$CW7yU5J?JO>`cgE9*Ap>$qFB*^&<=Cfw;c84DJdPk-|I> z7xR}Z{Cy&8Fb{k^gh^4tGg_Dj;_6qb!lxZB2J=8%0!dT&q?0$82)+QKNmpj}1i(D- zZQvzCan8eVm3;QlRKFC z;i5>cA`a4V1`|J=I_D{2g#t|ckm;^ac(#*WnD{*(0_7|G`Jx(N-uDKuC{Xwpg#}Fe zP}5(i@Rth)SG|@Kq>0j~bL8MGUyY36_Qwe#7|#K*qrNYn8(HICTj! z2G-?Dr!GOjz(v1m#o1J4qJV+3ap3{hk`$`88b#;@OcX9Kf>llgAX?y@b@go4q19tf zYZY<450;7)*u0~&It8Q?(RQHCW47uQzRJlKw0VqmW+4?CJO){#@O_kyi47iAJB>tI z*xd1C*IGrK(J`^Lqx(9?eW^lgV(S(D4NTI+){cFk$#I9Kj*?Qd!eKWyxBVCjZO|;mhV=TF z4+6b0OxOG?o^Ti}ai;z$a1<-`Gh%9dHlJir?E<1ze3}@&BW{4bbhr%Dks(|$m1ukvYSdYTrDJ*~)BFEdQi0c|)gR~-6 zD-=GnNej5)mmry43SZ%fL%}I!ILFF4vP0Oet+9SZ?1wgyAL6h* z;N%Usp#|=H94-l)qZQ)Udlmj(kvCw4=wndfaCQrGzfz1V`y2)iTcZ^?aIdrd3Qu?H z1ehOYy(V@zN3h#1kfC1u0jYCkAjtw$EusN(aJGD7-zz4zR$c%ges|14W z9d&{VSVTJ!xcmW>xO7L=A;q?@a31{K| zmlN@GTO7pyK6i>XMr=JxnmH8v2XyE6F2v03-~A)k;Bb&W;T~yNdsFx!ILC>j3kaat zp+~?#3qJ^;9IoGlr8k9dqV8&;5Q@7^PbnOZjiM~tqQJ~VVW5*hMk8Ec zC~KHq25IRz06bJI08|{A{Z7yLM_eAkjpU8Bub9bjZPcdl3P=9o#Bf34&$Wi_FWpFn z)+P#geAVn`n2B5UVLvD08p7XQyYNa4;Xn8M?7C1~?(CY+-)1cck2S`(!d15l!#&4B zo!_?zZq-%TnXtvcF1Qs)VQ0e@*+kBZKIa`h z1;uu-8!hjE3!9S18PT>69C1m5VJ5i{Y^ zpSi1lWd4^OX?EibBf0=40@$7PJlG*a5*^V1{d7YIk)kb2v2k8+~&@?L2L2CK|<8@ ziDAiN|2J-%nLFpk|MWd3$g%fq_^Y4x-dX@7k2sy)zV>BeSOi5!Sr;7X#i0;X90L>W za0=ETZXV2>B?@cqA(l=Sl8YO3AiSv75rQDDf)+Y6kMh><--?McWbVz`TP}u%r$N<$ ziNW49gjKuDpQO1Xo^eDEyaV;OrIppqro@aK>BEn$QV1nDINKG-ypY z1e$UJS*SF@ImInS?B4UE%A^&C?c1PVp;aFXlqR4cf>UmaxDC*cY7;nN4?7dUFYU4Q zGf^2JfX@>vKM0oRsNIM~1dx^}Qxr1ErHWb&hm z1@1qFtEg07>8wP7js+E4Q7UgBPn>~{1#O~L-s+qZ1RV>WOOH``E!q4XE=)p!@sHj1 z`q#hcrThlTf~4-endvl3P;s`7!#PHj0^mEP_LJf7zex3oTi*|~FS|T_XKy_`V!~oc zU+00%COC>yBc9u5@+#~aCfpf|+yCdTip6Uo=dOyyT9~^k_Gzd1=B|o;Mlaq*!6R*n zGcANQue)cRHLquS{R>65x@x*mZ!wJjLdkNt7p`rFL*`+NmWEK ztKya!*p#Ed2@BXQqw-G(AFw)uOJd7a{t;mTt23VlixibVA}l~hjJM^cs^T<-g(_ma zvm{OB3xyBR5aYe?>8iK}8}{Ugsd$De?kzAuK@6f193`imTcG~pABF%~DyOA;3)Ekf zMz$&rs#>7_qMJ-}!r3|}eB`P#do@6Vgv(fYDz9^t1fVd&^XDs6j(c;lhCmtg9DV&OjT4v;6{QT z%HWuOrOFeXVu28j=~q#Bi%kj%dZj8(rkE&zWBk?R&QbhE;kicT$D9a2{6-I}oCrYn z#_dF_RdKHboB)S~N(fP_@*yV#NZuHt&WREPYK*d8<;Aql3mbM+s_F*v;74H^UiN~$ zGb+D8KHxr86)wDhlhZ24D>bpML7K)@=d~&?A{z^(X}kw}ozsM2*ABEA@UmXzJ(LrR zEk+wS8ts%8?od_f98R+ew^U)g7K>Bq?w}T@!r>NG=th{E4Kx2C+@h+&86lmus(hFl z6zts*B@q8A$F7G#+EgwSRj_&I=^mit;pGM!q3t;7LeIlxmQCu+9xLd1xMU8G!;Fv@ zj$Q8|uxVFe{Y6v)^gXPW4wc_@W*^Y`Xjxt5kxoTH@57s*I^iF5Y@qvL?z&WdglzuU z-9#MvC-tDMGa>##=QJEgj&DHGwyELER$%DBndWwtkJ5AuuS>^4N#oa@!vEbLpTMcu zz1OAVHHi`V@UA1njh420we z0($P=(7$x|%+voOWc>dCH`;SN#`+AL#NZ4VDxT%srEBV`UJf1%=XUG$MOE_!CATi-dtw;9QqMn8i$;6f0!P-j`V>r z-8zZ%ztDZc$H(tL;Ze<>F7ft#xQkLOLUh(RJ2GHB_V6g2{6jx0aF%os0wB|X85JH3 zI0UmKVj6y&QIW3wu*&h?UG!9_^6e<=9#O>$H?X@>JP>6UJ1yDi;0t;Pn~2 zyYzp0@a6X&c(LHMnWsJIGWQw_RrTC!EOW21{JpQr`j>f)1-6Cb+U*6Hjf)|_L8WQR zIB08VB*q=yKL-K-o#N_geDmy|{N5=KsH=d{Ty%( zfjRfuBelC1fu?V632*MTN4UD9Oyyik;X1L%S#-!@;D8+jDo&k0HBq}a|Kt_ z@JT38%fsV~8oR3U$AuqI%i}dv6RLA?3*I$Q>1g#eQ2Ud9+s{BR4^Ljfb|c^NcDesADs_YMqxm{F}vOl>!RNS zo0}@1xuXFVLUAQ_5|-th6?nKE3U73bQ21SEOX%F~P;(Ew|9`!DKPU3fiTra9yvvNX zIpEg)zn;kNgPkiddQXA2+R?njz7^bMa!YmIbbwdEgv#eO2<*-X4;xqB2Y#ki-stRu zhm9*A0Gm6owZ@qzY*FbT)?Jn36Og!C02^2EL6!*3xmk$g#+6rq%_7*sL4M#tE|m@s zMrt#gXJ7*evX>~0;|W-d1~!0v0c@f*UiA`T)2-6OCNUac3rEh-&knJ~5UcTKXRAz) zO1C5|*7zl71!1QO+ehGiXpQ5cNL1oKAMY&E*aBWo7C!juz*+YT#A6md_`pNxFXR)H zTMvAB;bOH1F|^4Zgl$YJdl7$9kaH7uQ4e!_ZvT3{7srP2G`wm9Pgux&Thr|KiY;59 z6$|@IvD?Dm%a`Hh@4|lbvRV6$@w4CYNweSE;%84$pGlql{@dTQ`{&=4ip$O;U39uD z4#oko;i_|xEaJl!TlSMhLf9g$|CxU6bNHEfN)6s5Q{f6Ycn3@4dCrL>*yi&suvx0{ zBaRY9{deCKXW`DHryx&B+RQCIeYoBWo0hei-NF61w+}WgYcsd>42WTW zxyCQN2FDTDA0>wL6yP3?&0dwRKTp-1LtJpsOQm-Q(x84Ep0iKvqDs%1REm7cFin}XVHa;92db~1(lpV6A5Rq296uEb2N@e;E{L068PJp z1i9MG_zz3q1}r1s!`PS(tbgN`LMt@q=^l8%3fU^WqV7Zhi{E&QT!A*T(g17UxZqvr zL~sI@s3C$P&3R4;-ewRPE!Ow|@hgr?-){y#C0cm#8kW8%kf)Vu{3jwKu=b4$++`Y1 zpir<^8)Jr@$=b|*a9I4t!*~_YlrW5mYu}iaN++wZ?u~I)X<}L3#AR<>GFj!1xgRRhy++Wide z+_8b_H{Cte7=2QlVZn&3YqXsK_q8)r6nzRZJnm#JXAJCe_PiM#ksuq2^Wg3vovx#{&y<`=)_qA9_X);rLOyp2p6%N#mK${|MqWZk*n%Ifog1 za4PUH%C+;vm@v0TQ#9D;!mAuAyPv;UkoQApP}u`BBgq3qK2PlLvDouqq63}h`5d>C zp_2aj{1-qk;APZT=H?Dicdr$PxlQ&koke|^!(}4KPF@H1?WuroK+?lrPqV0huq!^_ z!Q=22n|JWb^#A^mi|qahZ@$9$Lj9gfV69><&>meC{%*W^16r}LU)x^-{6c(h={W^s ziunF>->P_~-evfEy?OEflkPuz+5dKLVf^mtnTes7f<%%JeNdd9Nm%j;@ zj3*t0d*Vu@i^6o;dZdfPbXzlCVOv5p9{o6j0#9j}EPD{hvas*H$#|%=JnX#p?|(uR zyY1HY5t#moZaADV`<<|FZ&(!&KR9cD_;7aE{=n$$cgFdwaF@T(iW5c==Z-;qUru}< zPRqhnEn29hmOBZ^WzM(jvoO* zsa@mM@RuV~fBLH;C^+>C!RZOX$>t8XAU~fIoK!YMTE z)tS|$ikBNU;LD66!nC=Eo}q>#C4Pebh5wtkyUpE#{HNdUwy@#l&yr+C)pUco+#av# zv$#JH49$D?bL{)(KllCzp7;C(FL>dDFM9DyUiz|^FMP!-U-i(dU-R0BU-$Yq{M#Gf z^yas`^=)r|$2;Hk?)NkrXLK zNzqb_6e}&3mPm0@yp$j%N=v0ADOp-3EtgWHR4GkLmolVGDND+ha->`-Pg)`6O9fJ) zR3sHkB~qzWCY4JSQl(TSt(2;z8flfZTB?=mqXvp$J6kPu9hXi>BhpFflyq7emCi_KrE}7GX-v8xjY}7$OVVZOigZ<)kgiGB zr5n;sX;PY!Zb`SLY3Yu1SBj7q$&qrD94*JlvGQVhi5w@#%L#I#yi`t-ljUXdaydm# zmDA*OIYZ8rv*c_!N6wY=xPz9HX~C*>*mmV8^DmhZ@SlAt6iOO+%gSy`qmS5lNzB~3|JGL%duOUYJplw2iGS)t@B1xle(q!cS9 zN~uz&lq(fVrBbD=RH~I4WtFm8sa5KfdZj^GqckdOm37K`rAcX4T9ge+tJ0=yR5mG_ zm3E~=*`jnRUCLHvo3dT$R(2>o%1)(M*`@4O`jmcUK-r`0RR)!P%6{d5a!@&>99E7f zN0lMvm@=#!S57D+%1Pyva#|Tx&M0Sa#fj7t|`}*8_G>( zQkhb2DYunr<&JV!iBK1*k!qA0t;VRa>SA??8mGpq32LIcR83No)n)2(HAPKT)6{e| zL(NpP)ND0J%~kW%6>7d(pcbk{YOz|Pma1iHxmuxCs#WSrwOXxFSE;MjTD4BCR~ytd zYNNVVU8k;Bo785tMctsbs%`2?pF_}2h~IBVfBc5R2@=}sl)1V^@KX2o>Wh%r`1vQjCxi*r=C~G z)C=mkdQrWkURJNDSJesintENmq25#{)hYFsdRv`V@2Gdx2yKxTsYPkgT8tK}E!LK3 zaaz2Vpe1TcwInTBTc$17QnXYpO-t7@v`j5a%hqzVTrE#qq2+4@TA@~?6>BA0saB?y zYZY3hR;8`fsG+ zx3y{Qj&@gz&=={EdXyfm$LO*8Vtt7or^o9FdZNBmPtue1W%_bGMNie!^mIK#&(yQ@ zY&}QM)${ZfdcIzu7wScNv0kE=>ScPlUZGd&Rr*T3TCdSp>8tfxy-u&!8}v1LqrO&O zr?1zW^k%(9-=MeZZTd!ilfGGR*E{qrdZ*r{Z`HTy+x2dJhu)*_)O+<^`fj~X@7D+P zJ^EgKP~WHT*AM6i^+Wn${fK^4AJUKM!}@Xkgg&C5)KBTB^-=wdepWxHpV!Cq3;MWz zQNN^L*01PS^$Go&eqFzz-_$4dDgBmyTc6hN=y&x9W04VQL>bXWj1g-rHkKH1M!b<= zBpOSNBqP~aW-K>Sj8r4dNH;Q!Oe4$4Hgb$yBhOf2p;2TM8zn}mQD&4I6-K2| zWvn!+jT&Q>vD&CL>Wq4$!B}H78f%Sp#(Ja4Xf|4m4MwZcW^6Pz8JmrEqr=!@bQ)d8 zR%4s7-RL%U7(K>Lqu1DF>^Az0eq+GcW9&5sjeW*`)`aY#cXE z7$e3>8kM*+wwukLygKQt$&knGI><~N5 zj^M8YM%YPqik)Vo>>|6wF0(7_Dw|-}*mZV;-DHz& zirr$j*)+Su?y?BiB3Gm<$`$R3amBh8yOy}(T=A|1SE6gFE6J7YTIO2rN^zyS(p>4T z3|FQr%a!fQapk)5Tq|7pt^!w~tH@RCDsh#%%3S5H3Rk78%C*u}?W%FDa;o1g)wRvF-PP^d;p%bi zboIJ+xpuqyT>Y*A*B;ki*Pv^kYrpG&>!9n9>#*yH>!@qUb<8#FI_^5*8gZR;opPOa zjk?ab&brRI&b!837hL16i>^zq%dRV~tF8&xHP?054cATAq-)A`%XQl|?YiT->xytM za!0zO+|lkBcdUD{dx<;F9q&$XC%TuqlibPfW$xwf6nCmS&7JPfaA&%++}Z9Ncdk3n zy~3UEE^rsRi`>QT5_hS)%w6uTa96sk+$-JH?i%+h_iA^oyUtzjZg8)0H@erl*SXib zo7~Or7WW2stGms;(Y?vN+1>8$aBp#Uy1U$4-P_#T-QDgT?jH9}cdvVwd$+sK-R~Z7 z?{V*S54!ic_qz|c54sPz54(@JkGhB4$K1p2=DfemjsQZljtoxk%ynD=j z!9DK2=)UB>?7rf@>Yi|4b66^=2`AZ@uYgvJn5bcPo^i!lkLgzOA$H2G1H#qi3yWooBtL$GACJ^m=xAc6<6f{hk5O9?xFSpl6?FzvqDG zpy!b1u;+;9sAtG?%ropc?m6KZ@tpLW@|^aJdd_&xdd_*yd&WE$Jma2=o=cv~o-3ZK zo(a!2&vnlY&rQ#yXUcQSbK5iRx#PL(iSRD+MtY;X(cTzutaq_@i8sz0?@jO~dY5{W zyvg2W-sRpDZ>l%Vo9@lhJ;Tkfs!R(h+v zE4|g;8t*FaYHzK#&Rg$o@UHPTde?f_dDnZJyv^Pg?*?zHx6QlJyUDxR+wSe~Zt-?{ zyS!Vy+q~Po-QFGE9`8@z2d#AcX-1jRW{eqYE;g5#ab~=kU?!SN%_K9~TxKpeQ_NH|%}h5l z%uF-O%r@1r$!s=T%nfF%*=BAuH<_EwcC*9WVs@Hc=2ml?x!vqGcbGlqPP5nCW$rfn z%zksg++*%F2hDxve)E8N&^%-wHjkJ`%^~xcIcy#`PnaX-N%NF>+8i~{m}kv%=6Q3> zykL%-7tKrNW%G)8)toS|nb*x5=1p_boHB2jx6Ntuj(OLN@GbI1`l5W%z8GJuZ?SKQ zFU}Y5OYkN7mim%>$-ZU2<-QbOsxQr#?#u9H`m%i4z8qh!FVDBam+vd^75a*N#l8|> zsjtje?yK-s`l@^@ebv4i-zwi~U#+jsSMO`^t?@Pb*80}@*87@#&At}j24AbM&9~9F z$+y|p?(6Vv@pbyTd|Q3neA|89z8$_E-%ekzZtjPI=PobSAE%y+>z?z`x_zPr8%YmpUcMOo2Sj1_Awww73NR=ky9C0a|ZBrDlk zW-Yf;tW+z_O1CnsOe@REwsNdoE6-YCa2RJ!CGTAT5GL!)_SYSYPMRe4OXkwW^J@KS(~kPtHau2by{84R%@HJ-Rib> zSUuKGtJm6P?Y8=?erv$mW9_vDt$o&h>wtC8I%FNTj#x*nA?uhmY#p~wSR>X+>y&lc z8nwxy;Nny{`}*R31YO>5GcvTj+ot!e9yb=QjEi+CiD z;?X>Y$MVH|36JCPJb@?jr96oz^JRQFPvNONji>Vrp2@R#HqYU?Jddy7`MiJ^@*-Z$ zOL!?S;+uIp z@8DZ_C-350`8K|tck>;*hwtRQd>7x%`*=Se;CuL9KFIg+{rmtw$Pe+u{0KkFhxjo* z%#ZUEe1xCmr}$|;%Fpn#{2V{e$M^+4&M)#y{4&47uks0gjbG8<{uFcOB{Kx#m{^R}={t^F4|0(}z|ET|r|E&L< z|Ga<9f5AWQzv#c@zwE!_zv`dxU-Mu0-|*k`Px`0)xBR#L)BZdDyZ(s4qCjLIDi9rr z3B(2#2bKil0`Y-_Kw@BNASsX>SQc0wNC~6{(gNv$j6h}}E07(?3FHRy0xJUffr3C` zpeRrrC<&AX$^zwqia=$cDzGw89jFPc3ak#)2I>O!frh}EKx1HSU|nE+pefKCXbEfx zv&?8;A%l3PuK_g3-a4U~F)4a7i#O7#~as zCI*)VlY+^?Wx?galwfKwEtnq62xbPeg4w~GU~VukxFVPzEC?0`i-N_$l3;1DELa|_ z2v!EGf-8g7!J6Qz;Oby)ur631YzVFiHU`%Q*9F%Hn}W^3mf(h9Yp^Z2F}NwXIoKZT z2yO{>2D^e=gWH1JgWbU$!JgpGU~h0&aCfjT*dH7S?g{P<4hHuH_XiII4+akf4+oC~ zj|PW=$AZJbJVTso?40Xz)z%Z17z0d~hsyAvhkq7`zm`9J~^|8k`7T3tkW2 z2;K}%2B(6zg13Xy!8^gb!HCeJP-G}76dj5Q#fBD#mW1L$@u7rJVrXe7DU=*q7Fr%k z38jY8Lg}H5P-ZAAlpV?m<%aS?D?<69f>2?oC{!FO36+M*Lgk@~P-Unpv@%p3stK(M ztq#?O>O%FQhR~W&V`yz?U1)u%DbyTl32g|qhT1|KLz_aIL+zoC(3VhVs4KKJv@Ntf z)E(Lp>Iv-(^@etZc8B^x{h@)-p3vUVU}#@xf9OEyVCYcjaOgk z37rg`3Y`v(hR%e}hR%h~hsHt|LgS%}p-Z95p(~-Qp^4D7(Dl%b(9O_fXex9obUQR1 zx)Zt^ikP=(UgW%}dC~J?=EcriJa5UoxOwsO66Ph&TRJakUh=$U^Ony`nU^{*ZC?7k zjCq;!vgSSftcT%-RRiFX_OQ-YN%m?9%x1+-RUXz@wral{j1mJ3xV%^aST2J_r)od{ zVU;}(P-la>U95uHqu4Prm^Fqlqh(>%IcAZH{#5qg6!uN_o5An6YOlaBqlz#uXd+Cf z6J|;m_Ia`}BNTg)0{*i#I|nn|WZ2CHnDLUGfEiCQggL0$`_MgBwijdkOANac!);N7 z*{0hA5)@=wwO;_%iJE-`gRfN3)L@@3SvTnR9;}9B9Y_sseYIZ$`Tv>yV(>bkpc~xO zB-`g?u>F+%X`qg)!nTMaf;TWF5pk6)%-v2xxsH3JLl-z^xn@^jzSCqo9V>d3$Vj#0 z+^X7bSk+0Yovea$yJ9~A#+VL<&iW-R6#R?2y;=uzjczyU;Cxk~e=$y{f3aJKe=$u3 z*o|MO@T&#?*(huVr;+T_09F|f%j~xhO}A$6z&u66|B7{eP__?YosKE?1+1NV#r^~s zT^bo>5*RA`I1v|-(AhQFK86{~gMS-az*F{5fx4>O6PV2nnsALX>|U(VGrBMv6k(sC z*qLabYuI_1{%P6H#@MnXVIFn-jcE2Fw6B9Uf@ZN}w#oKJ%x{Dw>~A=^8FSK|P=)l6t?1q?*)7<} zvUU3jF#1$7P733=uuNC&AAnn=M8+|lj9Q7BVUuis3EZND+Y%WpRrY=Iab5uedV^ta z#}pQ0>(SsgY-qO{+on^)-6o+UG%;OxsuS__YveZ-6NXpKReK!U-z|mW%`wP0hG}Um zLnc2xnmvj2dR7tUv_nTa^cu&!DWf~=bkU(f{SZE)v5lo*8!MH->b>xB9zE1zdptpd z3_`gCFpAz5Bbkn_)%aD2c6ZS=9_=<^*bV4Vfp#m2=Jty1fnujbw?E8~Xr5_ugmhsFH4$f|@CocEK3 znX3tNzb=Xpsbj}d+2hm!iZn7NHEL?-MXNlk+V2M+?*qiEzwHLhdWmY6qM2aWi3YeX zfK~|=qS(iAI2scj;sf>vfymdvP}yhf&jS7uP-ERP7{H|zdli;HLltI$A6H8Kj&4!DUhiiPDh?4v5P?fby# zkV?i%%rkHc)joo8x9GymQtagzcP{p0mA#s}aVv(0p*GWyryRcm`Y zmaWC1mq{X?Got^-$@X(0h7E$NZIXae*@wukTqok&MAV}{*jP*WVX|rziI-@^cQ%Uw zX^liwlo)NU3!apRUR3rua=IoM)R<&nz(4#wWVseSs%$<*|ET>P$na_fhaEiaAk0+9 zT&LLUu|TmZni@NS1;G;@VArABTd?7GD|QD~R-BU!Q9o^B>?<^=wytPYPg_;=3VW|4 zVP4h5f7-8#|8%z`{?m2%kKr*9dzA(;AHw45Y=>+o;MiD!^#^BHiPYgt30i|-;FuY@ zpyM6)GTAOi_uINXjrl#O+lSEHE8Bw@-Ezz~a6b)67@i$-P_g%6(F=89zg@RaAzi5n zbE7KElZr6!IR2J9;Zq&@l44)RaM6+-gJmz$?J^vh4nteR4t-j&9{^*gMn;Y(>IGS_ zf!k;c2fqwE2{~}7hGF4tM2S34p`o(35U~-x!p3$YF3My?>15mx%%l>znZibJT-}XB z>N%{2MA=@7<=&$Tv(&K53`pao27)3y6d;VP8i||J6LAO~EoNWV;fRKdK4yq=e3JI7hPAqIp}k^U&;* z1s$ykGglJ!S0#G_-LI->!uTlI=~2-N(+p~N5g<8WB5TMK3}C9Ah&hY_2?76$0>v)G z|EOECcVItxyZsJ`>aGd~$fl}YO#_c&??zAi75f01n^a*g)9q5Ehcsd45Us&!J!)4Q z9p@4SouT)OA*WilYfyasvHcSWyHP<38XuV&TQ9U8rsO&$9IEr>4?n`zm##3$xbCYIo#){lSrpi8Ve*vgi$zF`U_G`kdlQ~@Rl2B)MNwXFO_|fq_A@e81Tf0>SX2?R4N$4(thcy&W?!=;M-I-r*7WK0TbTq5d}7zgrIm>y~@ zR&<#x11Oa(q#o0)+W!GgNy2HDM$PIrHc6Ge!hR(DWKLxdQx-EZrz(5B{RW8lv_{4*2@JSr6Htc( zjCKXKhH^!i!Y*I}S4$zF+nQL`q@Eg;rn-YOMg?ojO>{L5}?!aSgf z$!e8>lU0>{&Hg&zC#id0mF)@q8+&!IgsYro`xO1Vz!}i&01k`hA;mt7NknME+@jf? zSdJplDWG}Qp{pgk2D7$Av*VCE9+pYPaZa<(lXvKw6uo0^mF;avXJ~dNdT$Z)=k+Sh zoa=RBd$(0G`V@+45okRyC)tWHBMf^HjxQ%cCO{q@CEMSG(tQIEv;m5}6tj~k3G<9& z=7FjOBUvxot?0f%66Ta**J6HF%fh^&qpCz$d*(epwr7~@$DFYT`vND)Gf`*CAT?sMjh=gwT$ zy?16TW13%8{py^a)2F-L)qU*mQ|4hsy@BPV+ScC%{|@KRlD|Y@3q(CyS{7fzY=5p?E9;K|Jx5% z|Nfp2-TmoUi$6n^hC=**DkJnW@4x#8;_d(Veev>#Kl;CZxcc|^rMGdFY~qJ}_atrG z|NVix|2Qnz|5zEP|L`Ms|D$je{#2X@XZ6E(|51F!Km1Vj@9#{%fAFKdyM3?zi4WfW zlOY~|-wBS1|Nal%{o5e||3@{Ezw^Pne>W7%AE}JlU;j|@8vmQXeLnQj|F|;Zzw5*C z9?$lH_~?f}`g8BEhWICy|Mq7-a`(^1bpCKPoxk;=yZ;~_>5sp^`uG2QU-j?LeW3dH zFMYTg<&Q5$`&U1F_h({afAxKL|5|+RAAI=k{}o&NKUWX??|$U&zZawb`44b$-~%5? zp3Z;rk-PtC^2fDOS&Y4Pe06*>JvyEqKD<16Sj-vkH$ay;%eo4w|wRW`@7{a<7VG?O!~uN*&9rYemR~FhlB2PIvb9=lX1J>EqfU=F9-d0ciJ7d+Ou}A z)t?m8>9pPI&6=KK+-^*7JG0re9872JZnHa^bz9Bmxadra?yP7RMRV9`^e3HOW7uwG z%&gI!4a@$x-)IiU{b9S;jd?aF{c)>|k(w`l@6PS}(47x_{mJ8u@9Ff)&a^uic=~C3 zIxE}bvTStANvCWKhJ(p4W2j-fm^H>We`Yh{X*RCXbjD+Io3)B&*(h6+UeO3JG^S(QO=6x?*&HXk%Ii8g1$Imvsd+qms zvHHEdcoOd@&d(Qr^V4U)US5tb3^)I^@3p26&Q6NcY5X*pw%Yx{Y!*NFo3nQO+v#>& z>2J-+IQ}gLvvM{V&!&@c^RuPH(Q0&u?diDRX}7xLal09tL!=s=?y!G2pPZeSFFt?g zTQ478l*RP$lty^&6L&uTYB?*ePA*?Po}U+&lZP)(?tF5`QT4Zn&wc*R>n}V!dtAQo z=0 zX*ujzxn^_NCF8^XaB9!!njD$#Hp=bSWKUQYYd zMsMb%PFrIqY}T9hd*pf8r35n`FceIIc-|dTI8Ir!)#&tQy-9P@D~H9TkulU{-0An* ztwu2%cFXpxY&6T}pw)GhyMt+`owMw-u}O5tWxLy%^c#b6+A5|q+PTpgc1<_y&<@6J z57_YE#;i9hhLc#gN$J5`v~`Xu84TOQ>9pvTlYXz+>zA``zeg>#dkw~@=;WyP=5*Ta zlcQc^(CiF~VlW+-%vrNjPRqWB%~ z?Qv1GTGPgaIUBcP6YXHT-)oh_vXe1XV>&K|olc`&_9oq;oD6#7N$Cj9W{q}pHfv`L zMPoOoy`s??_Itf%m=_AG$zVCd1ir8heuoL7Pl-G()dBZZ%tD zM|s@scZzP8<1wC)ErL2OhdHyFH9F%CxtzA`qeJB1X1CSqb8Grjj#9=0+O%@Y)fx;N z7Zx-JYduF^d~LHdeWWrx@BkRFFBfF(43~nYBhVz zMA@9A4qxOvUZS!2Q`HmqaDP_6E?(d-P{4bnbi zS*K;M@Tk+tpxGUA6f=fu4`;)EgJB#zihlY$ zUyew}A!6h^gGRs6$+6B(M;Ttrusi7X%g%UE%*t{|E6-;9xM_~@Y8KOSGV2X{&34i5 zmxF@gns5UPCTQ#sW~>#Tv25^PI;}~o*&lS;voW_^^wpRalVO(X^Y&?HGVFGWNoy)@ zYPDuf`lb+y6w_{zBUc4~p10O$^cu~X$LouhieWiy@f;?dS)P(ZJ`%W%@xZmY9HXEL_IqVmmS<&s}tQFht(aMl2;bPC(>rq?NNjF@s z$uLK*8sd>@LCv(uBSqZo4#vG{bJ*?-T4gs&$&|w>OTmTVq;>n2z0aPuJI!XZAL=S+ z2gy)>ND$~`p;VtS<$hD4-L}BFH_Q>y=D0B_$4#1USQf3}jITYI_1NoHUYh5#a0VqQo4s~VTuB_7?AUA|L@{t-;d5ry4HMWac%4lfXJWMK zkSjB7j2Zo5j@LKk6v3FBm!Yt}11%|9jh+((5A#Bf*GIRE!*>+f^f)e!Mz=BPPk11m zF10$#5m8drED0!#4h|vECE_C8vS}c)k+W9Kerr6QIWptI>N`Jzu4#YRCHb@2pqn$R zUZY>wD{|E6wCMIuv*`6(jWP2`H><$DJ?_~Wmkp+qo@=$sVocqX&2GB^d*IHu8qJKM zU^tVKnVAlVYL5YIz)u^)M&DKx-ARtmV2q;e{FZ%Q|Fm09yTjgKOdlrAG3XGcSu=dLV%Ba>9O)rE zuY~B`UKnO$cF!?{SakRaonCh`9JV?Zt{C=aS*{wugBR27l5ti3oT_rbI~q?*K-Qp@ z6?uX322Ik=<_rmD8`uXh8UR-&J&{F@`_WBsF`~*DZ9mIH)uz+QbTSh?Gy$<-Cvgqvh!4-v;sRtm;9yda>&al;f%(q3vw=ne zFRVC7H){t6W4>Lt&C8QhnDK+v##|B;cCu6OOkj=6O)E|`X zSa?Sfq|bCUhEha17H7yg?{-=(jwtN1Z1p9Z9Lnxs7N$B2befjMaK;Qa+hdlYDf!nL za`)PhWe#&EXI7;N4FeDD#i;{r2Iw?v+6>WLe~_h+xgS=goQl30!&y(f1h_4Sjcz#H zgB%YTAT#c^CT$p)1)qV-IYu_nk?!{?#Ec!}=u>kr@gcF`$+U$yg)`WJ)fOV)jGav*hn*DKm7XJIR%`+bNTT^n8BMeMKYg)>g`J_zyxX1Gwkci~-EJ=jVr|mp?FMrrFVzpgzCE0DpxY&AjTX(3t0CE@ z8Ja~$yfx!JwnVEO+-@;#PY?n!mc7SsnNc$Xnd)i59)=qdz8ZIC#(BsYiht0=I^Z*u zyxBsGIgo>&v?6)VBxVc+9h~+04Vcat>fYle2Qz~>Siv@DH)E*wpwqA_Gcy3tb%^O; z0+NJ?7BeV(*1;)(_ERQ|^Vpeoc-{UH`AR)@0x8Xy6y*cM2t>_|K|8t-SI>) z3O9z2+PNO~ z23<8<{Z@`b4$p-n%e<7*Z+)Q?B#fPv(;0V%S;u+M>p%f!V=*8{lE>C=LoOu3TaKi- zKI;KtMZn`;f7%nRPFNg#mSz)5&}mAiWDG@un#3uT)zI^>f+8+q1+2#+_HvLSNO2H_ z7`{$p(qws<#U^bWBr3_htf8Emu9RTpE;~bBsQknX%I5@5Be2VOKuW5Y@OqhqQr>gY z9dm^Qf}&p9BFCh5x=v2OmqzLE02{)T39KBvI-RzBZ0 zjx23IXDDuqWJ{wz?ep1N1fGH^$yyu5B1~(>S^-ODeN->$t|m9F%UE}M?H~aJl_XEv zDF8{1u9Yd}Qkxu*aw4JKcBTPzIkOtHXI=V^#M4qe{%lGXOUOokoUzY%KyFzVov-jg zsKBfx#n&1)T0CT!vV=v(P<-uP3*^B~_um5hrX&X?zKm4uFw5)f;X{ZVL^Ulinp{9r zOxb9mSjfrp{c>i7AIIuAiNlVhQmnfy4u4zri^%2}`mrbDRTm{7AkaQ(`p(b+FWCPqp8>Ec zB@fRj;GjVvXv$reY+7(<`Z<~bwRP5FJsB@~JqcRzH)8o#l_O&PF>E(}Hl~?6wZ%GYq1_{m{ zNZU`?#YPjEpp6j1NQAGnt7`1GCcd13x^epx-JS05CE2Hoq+5l&!DjRC{M0A;KZPq7ghmoTe6%(pQe55|JEGOO5h zx15>Gn>8&Wh~U_o<^Zcg^2Gtri6#%krcoANZJ{G0tgFDYZqq%`E{MbK&%TB1zUA^?V%qK$IV z9Jg;dGf^e>e-}0<3peEWLsw@LK5{`X<1W$pPC^#5QbHDJLEL57A*5!-fA2^@hqK%o zGy|TPIr&Rd@@$>D%nu_>O*$chNKquJr#)%p*yAQJPCY`& zd=ceF1en86SZ5wMkJ75^|Yin6Rnv#Bk_?bT0SH^bQ6RZ@30FtC=H8n+X(FBBydd$?Ec}<5bf6>~8br#w9yzwC|l$_pcJwS zH`QcA=LESP!(VQ4!ZDh(`F=UV&-tOOXab zB6HsLs98V|o|iIa8a@C;uq?HV=r1ttVw*bD8MBh0licYHg;2771C>Br4UtwioGE;% zjG;JTsvqHH>V&7`X46bMO*KJEuLGaTS$2_+EtmBJ;0-#=RAp3Jqum z?MM)cXpReA0GR9^qpJQX;{h3U0f~ABH3Bh&aXc37P?WfmSw%od9MXK@)&(adn1$eY zg&Ms8j3H_nvnrgvRQ-zZ+!J2+$Iv5Fg$yXb$*O;j^nxHgGDuVd`@kiN1EW}zm(4#gJ7AH=!)?d!kUBO;mB1qZuG**k=wM zUKS?cII!oTi~%qq%vp{?9th4I!a~6zN}vPEvNTbTbA%xZTG$w(r9cU8 zfgwN>LMs^z6}mY?4e1yxZe=#0veuX+s2_oY_hh#)$#Rw*R)VD34HCP;3UlO(^r8Tt zgQZbH&RRLn_?42tTr-(&>jg4T?gEHcPB%jsf*H<_wJ^LO2?F&k;*uhG5PX1sjeMnwz4Ec6mKC@tv)og| z&n42PB4bt#i0-xq-g2YLI1tls>ALL+l?!#*X1>bFM(mOk-9UE>6?W0KPC& z!Z(m4RjvW<7htMx#*4{VcFGPETJjXIhFY9#6ancJy>t_% z1j7&j6S5L0WjP92C1wvJK#3wN!-c`s3Ah5M=InerxHhbWJ3J+K!i%nOB_{nV9}w{4TKXb*KXxJ zASMm=VH@EuO1{TT0~sS*3PIpnS%C>jAE#U+Ks!R6XiMNU&O*ZrCUQam7)5iSzX4!e z$cv@#WDka=jEgK#UX_z_Z)q61(=&=pno&_Hlz{&M|C?ow#VHgfVrS_Eg1LnG0wmx- zMA?)i#c-12Y&RsPRl;g^#P+cg&?~Eixa5QxZ2w$v7aB)O+*1#N3yf#(FC7kO}X z3>fFahjy1kisa+B4lSQ?29amt;n0sH{(_w^Q4%4AIjU*S0tX6}|6_))B^FVb6cG>Q zF2L8)3)+@ropHSSOgsP#uQ*uCxaJDZ*#ALG0YDap?6h?tRY)|!<7DrF$B|6x;C*xH zGuA4~JKim}dcmGJB#QI z_PSaPfT9vXR=!QaOP6rJGluF1X|Jmh3M(cBBqc0~hd)c#GmPz=wbJ3q?s-HR%Sf_F zzzLZettg39-H>wzTdm;DpgSYo;k^=1c$kF(6Aa|?a%Kewi!%LyhxF2cCsUtza+)WU z5Tq=cF?uVqKZ2DF8;Eup2Mu1}Y0>vbYk-Vp4{()J<^U_f0SRFcZ-l1gnDl zqhw3#2FD{~s8a4UaudokieTo8DPZNajB<@O06k+U;TxH3a2YxMZQL1_T9QA&XsFgK z$2vE4i<#>0BLy3HOq6cRyab92Lb7fdvr^xL_=4ZcH)5uP>aTKM(1WZGU(Q)8^xGJK zzt&W!BP^torEh|*N>67QdNH8VAs&?iAfIOrgI7hF@=%3#IZ6hRRQ?Pmr><7ASp`Bg z2#M})piDS*##)6kpq#kZdb#nE6?m$KZBnB=a9t2GhEhz3rzeQl9BZf`1v_7%XGdZH z{X=p#V<_ybHqA$qI>k-hGxXwNLm!e%p`+p|YO#KLIAOI>e;E(Rb&Zl$ z@uZRs9q;@UolIu><3t5O&I4Lp{2f45^m7A61Cn{AfjD&d5B;1FK;5_w4wP0$5i&0b z35=XeG3cO5JaUxGlvzi50(C@MULh9#`HZ>Ywb2b(QL5xVH7-*u1ndT@UhhM`C==~B zz& zo-joyfL2u=;+iAvI76^#JtDhY+C~S8MX4fQ6*kiRa(qz%=?s}nshV1Q*tj2iG8Ba} z0!f*y=95e+gk1#@ASNKOX#68Jfuaqe8BTL_dsl&Pbm$3w+fa7`b%9b}!c+<0C@9Vl z2AG5qx>0|?&_oL%&Q_a|;CTq6bOy*-b`Fp< zf~h#hFcsCvYWX5JM4w805)^P5*}05m*FpuZ4jkpSOEbyrs%?@bj$UyNc8;`5;pp`mK$z+nokk=>2dt?& z&*)v4RrjGkj3hJ7f;ElVqH_&~Sdd(3FJXn6s>(jra~vi6u7qKFK$$kWk+4^$g% zAbQN0!Z*N}a;FyHFL<#Tv%-Z4m`RrsElF*iPd9a8i$1Q(>asfAN+@B6GhtyI6qiU~ zD@&IkgwH@fa`YASY&H(px(g|aBm&k<W-&FqsfZQ7`PIG)wW%V4t zh-l<=<(mQjh{EiJ%$Mq)oXAUNIFONe^ic~p=4U5g-JFLTCt(0 z3{EO zZH(AxUxO?q4$zr2+9#`!&Z3@nW{MpHiqXUa`NO}W(^AEa1I`rXB&q`7^Wo@?B$A9f z2jCt&HN0Q1Wl1&t!svDA-nx9(O%>jegCtI3-Zj5mpp0yVyX16+{3l;J{t> zu#q7 znhj~it#S@_FGCTDuT(oDB0f`nU&Q2fZs?IrMD92y&hk=fM?BHJ! zrBttQUTa}hYdLb|hM+RiWnF|6J$j_s#i}HoeH>z4~73Jh*9^^HG7a0Gi3-3}!{Ch)E^Jz<4Io zfzmqB+)x>H@SHm8ET4gcr*{!ndn7lY+ET~*Y67KUV>1<986wIGN=`jN1RRJNp_TQuZz!wek_9up>_EIH_8BuB(F7~w{GKB1D*0I6+=8{!&B z3|O5N++*J>T~UHe)PY2LDGh}7g-_W0ZZAk7{m#(le#a-5e8>eHvs9#tfme@ zZjqznA0fmFb94d&r$`C};U(`%7Tpv(^@mvZ6 z07lJNFLunjXLTfE|8V*w&cg7JQ4A=kD@`rVME=VWd`SSMMy{Jd{?%1QuWq*o;qstu zs6=Vzc(}n$2|(MK)FTU&g%pCQj_alUA6P6y7z)lF6eYw!EJ(s}DhKAt8m;js*VHp3CY32(aWNrW2kuuEUL;e zY4H;Gf@DeSVK%Zx>RNM_ow6DaqB|VyPbn)2M;BC14a%^kc}+%7Q~+by6rf~GEWY6|g3$DE2BeWeT-8G%!!#8tRzrR51ZBC^?v!L#yv zT2n~FAu>RGw6=0X0p0~T1@D?-Xy%A0#S5?qbVh2|gP{((RjL!rVyyYB_Ea)MfjIzN zxwc$f79ZkZHycy>G!J@@mRVDj4VnQIBA1G1CLANF(P1=4A$Owvmez9UX6T~;cZrj@ z2P}%4#OOI9%At*pD8j>uUX9V%22&Fm7%~Q|%c`f5_*d!0hgZ(Q#Mn4>#;((lwJ#9% zazaBC1esLg4i<~nR_Ht~*%{DcC{>J5hLXW6gJRO;s`14D`j3jJ`?>fjL-?(Zn3flyXB3UV?oCg%uIBwKC{MQUE zk%Eq1bc2;l$>Ll)ErcCoP>Bh-*NvCFM=g?ExiX!cFdBLvojUmH(b${60sM=52>@C^ zs4R+KluifWr@6FS#q=6WCBi5Qu(n9bWUQ5I?qCbJ3x%q#*3Khg=vQOKI_af;p1L^~q*Ea&Kh|r2^b{AbBaS z2K{9PCXmDaR7JO3FS8I0bih0UrMPc`r<^mZCayk3Z)|URphS*1?HOPh5(u`!U!fFg4%>FblwjZ#&KL88j1$%|h*y zIF5$Sl6(RR28TOIrDi;!@-8eQX2N|qT5K3ssbri>@L}9@kTFyGYw3fhAf(P%D=Gj= z!MbRc5~U}iI4m!0J@=Og@N$HKb>P297Q$TR=BPb=!lOoC+aulSb3~LotT2wt5wMJQ zydj}Xvyv}u>va0gctDqC2MYx4BQEueo6X#6lp0(D(ud6)VbEz%A$>FGun3>rcj^vD zRxSWPMOHdvR;dgiuI(*dN)Y!qq~5e`OlcjFNn6HH!Rl1mC^IhAsI(4f<*Kx}5y$Oo zTJ&TL zUx)~3dMt&EWsg`5aSlI4S$;EW)^)>l`0y*snRp;$C_%gwK$JH287(O_kecL`LJ!C< zwqM3j;=q>rPc_C(0^t}scX2VFhWW@Z-JGGMu7%&>h4P2EM(RJKb8h%tE_BPvc+8OL ziXh@Kq6iKFIk=*Zx)M@L&E*(+#}?R&B!Nn&LzKWCGU_qaW<(uD&QJluKzezPsUJi25y5ZD~SR2fE!Ps zqhpCMg{$uN%OSK5xGepsID=|)VW?yD1TnOmxB=3WoS{gxTx{Qg16fq*RR9kkDR2g^ zZN>w}-RJNR0J%&HD~}PWK3i88hY7}(Gb^5yHZU;Swk|1fX<2Br6kaoRfghHm`p`1f zeJa;P=0Wgu{hs6F3d<;7*8V+bR-ieR(;cntq>3>B6qRy5pCV|V!$OHi@u5s2IMp%N$ z22jp;Kmb!WyV#2Mq8ySSP3Q>H4ltyQq2k7Rm?}96&Zr|4#Sb7z^j3{Svj`WGQmWVGUMv&k zfI_bUMcX_n9|cZ1Apk|}rbrE$pjYxFHmyN9^n^_`A$TR@0r}}dHvAj*Gnxh9bVVm? z4HKiyGs49!yXZowT$^G5+)SYkhK$Uk@$^DGXoCb%?ZE7m#WV={!s}5A;;qYY`eoEO7Z$RXOXhg7MXvH%7N%UiM)h7 zFU4qIELz4x!im%ct9K1+4Qz)WV+Din1S_VOGZZ#ZOE(Ia(+Y418*xX6(kB#Jqf{d& z0@Jfm1L~EdHI1(EZZ?Hwx;ew$RN_pPaw-|}x|arV zAE$v!Ls3Xg(5g78L8}s)XK_HJ8Kc%%rZ|1L5#Wpl&FG}yT=ddg$`+oWX5ip8xf}Sl z+obqgaEsJECoq z(BGwJ1a@)raED52=Xin$H)J*L(1!Y;&ugNimIWp$O4kjd@#0Ti>uP;+=j(Z0t&8*X zMMrBteRg(yQO?fZ`>b9qA`#8{V9}l>nC*^=a@nXvbkpbIeBw5X7r%RxWc86dAA0-v zv8ybG`#W8K-VEy=R@3W0{Jj}626s&bKyi~i`kDV?I7GvyAQoWx zWDJE%$1QPlkQ6uPLF9wYgAyE#Kcf>-#!!kv2?bOu^+aXL_)Bt`YUU+5)sSZlr4=f# zR;ziC-z>U#h^U+htt)hyMmx?J3fauTj*g!lY*{Kylg6mr@xc70tgEGTI8@;g1cHQz z;FkxdUeJMp9u(+|S<&uPsxX>n2!5RePxPOWuZ2FyOJ@w_uAT`l0uRJBfigXAC&h$w zY^3d?cW%Z|&awjxQq+Z8{Q;7A1KlVb6e%_@W(-9=MP$z8lv?Py^47EAnc(DTqMg^P z$$krX;x==kg}ja(RenM;kk3V*IcpWFO3PR$UPnyE4B!n@)Sw-ALV;(Fh-%fqV`8Tj zVS>5&%_1r`AK{-u%_=bz0k{c3aLK7>rKQ$zIMiffp9f7O$FtFj8xu$Z-|giA|L{z; z<#CWTyFfP1$qqyTE``#RW$0LUixmD5Ysq%F(<#Rj)JI8?jvi#;UFqeFcjWBEy{;XN zZIsPzUnlUAo0q=kKN%t?g4Og&?O{~LLN-JXk%AR5tH6;<$QUYUP{2tH)wobv=N$l! zn-X<3;jb`C8AF9L;3x``0kfhR)!}HAE?11h)Ntz75{p$GLkDOUz+-c27-g-gpfG6y2!}>5QoHK zkwwzmP#Gh(6aSkAl8M6w0qyiwl{ho&(L|nbl4uTmkEMr#j&9uD6|L}PTj@+cYjW*<-*s|rsd-!^~H>ocd7q|p9 zd=$Go`kix_9}xO1-RJypy1sgR%KHJZ8vvG`DwbbU$-8vzFbt1A&5(Lau@^ ztQ?4IA>iZZ=cV;gCS9DsQiJ5hpnMUnwfSHK9`2mg%LI!PbsA`9-DOHU5OEjy1uVq5 zclTR{TIeZ5auXTO?g{BIMIaj^t?3XeO&aBd(W{YxNdDE_Vt9sm%I;Ju+q$ zeE_&ffC!-&Tu_@U%w>oI03oh`%oxi3Fi;?AG974iWFYU+Z9O^}v#t(!#!xg9lD;c5 zBE_j^trp}OkZ`AUkq*jm#!&LCwosg?w>AT96SWKBB=Iw)z1^RA`}zoJbC3&Wu)10v z8~&cwVB$T1z0NY-93>;4F z6FLBal-!7#@qp@zAPV40Yos*?2wJlj8BYuZ_3BvBfcY&s|UP|_>z^@}cxQIZu|*{ld17#P79FHe9&B}jW~V}b4K z_JnA$k@0|fd<1@hn#1l4MWB?hgX|zmp^8B>h5`>zSt{M-V5d?&am{sHy@wrzJr0e% zy=K75C@>d5rvVjc+Y@ekn0%x{onmu#5Fb18JPLtbg-R``=hxRLkKs8*v01qRlu$kC!=B{lt8|Etl};R<0VDzH2rvX7$koMo3g=N{9_IBlz0 zL6+<%qmgrPq9j(p9}=aNmkN47o}dZAki#HM&)7kWBq$Z!y17ZCKPL#mbY}T28kjyu zL?JBB2WCOKby0sD03(P5$rsZaAt_^4G^QGESx$U!L14hjJgl%7aj|WlzM{gFE^@2m z1{|oTqEoRwC=YuxJ3R2u8ATb##N&`;`eW01HFM8g}(dS6JMrGPQa%RAhsv5NA zQXR%)2*#EA!JIP~Elflbuy{92i=BIPy4oF8$ur=fOD1oBoOK~pCZKv%Btl=gQ%B;D zPf9}h%IIy|CC)FMpPw90ic6PJ-hX_4lJRBAZ>?nNT(2@wwd?V zovZ?5041c8BALT`W|uf~K;IX?e={fWOYVHEF1)_#^K9FHnHVpe=te1hC+0V-aXuJ*XZ%TWfg-`3CF=j#rfe^{pYg^YF*20V>l}SD_DbW zDj1zn>r4KNMZV^fn|t%oJ0G50UChreUi`uR37cPb=lj#0=7*2Zu1+tHst^3ckM@4@ z-PQ|>PjBUH{>EX(E~xvIzT>~EIFm5OyWt9;BBU0Pc$yhQah~N&sSdOoP5tpH@heoU zL`PJ;19I>hxdYtq;G1#=K{m{`G*VnGgfD>uk})flks{4-!{tI;tl{!ZnNuxxDe9q2 zM8;4+Na+!nv$_>?({X`zM3doHXk?$2>W`&Xtis09VbLPU{a}zT)s9$}T;YsaIg$<~ z3XxtnxQF5@_`e`cTM3kzta?ikMce149pNFUvC+j0MHk15zIOXm#;mkm$HPnIhs>^4 z#0bu+0J(%NNZ~(c45eaStP(dwtB6tpF9oWTivm|*ARH)17y<$*X)J}xdXDjU<&=oJ z%W`CG^a;wC6`ob}qEjiMV%@*Nmrj?h$R{W(&G9D?DabqB7xxKa$VVnhmRYQgk1E}g zF)N{pa<6E1b92@|RWApl{DtISRuyDXhk!Fz2 zLe&YTktlllXga0z zf__0AK#A4mB#UuqsoldASIE0S6-+(mZ_%aEhAb%9IjWDJ>du#_Qc;PTu9L(qmkrYl8&nS>L&BJm`O&tybvQ~clE_lX)FU&!d1hX~Vz>H_O-j&9dfgDm1$hg?c` zYmVW-0F%Hhpxm5DgHDh$QGp**Fymk6mu$K((PIo+Ki!eDu{bwF%EQgjr&n_MFwT4rlv&0A=eVDJ&K&a`hFm#;tBA+oU`Xw5v0&7Hv zt{l+&SD#VI9jF^Z809lj zsEomg=gcnV7<#tYrFGC(-n=$#GTX`~sEMgjQAx4@blH4@z+;GBR-h#0J5*MU+!$8@ zOU47r&}u`YkE7P5YT0xrA^+@;>%iInR?e)@JR}6fO>t=|rQr5xY( z)EUl+JRvg2vVr#KO{e}3r2)?%tGNk+iCY#!#bE0M@fTLcj43PhupqaLwTcTTBtFpQ zbQ1|oSFMV)q`scY{efEReoP-f0wkTg=H zs`J-G3y6%N1P!PgxHU+gh>DSIweT9La@r}4oHIxy8+tvk7AUn+hpL3sT1JVYl(6m{ z8MD%+&q7JB$9>)Mp+rGM4gl=9+R$EP3{~O`VMnWIM4Ev!5H7WBp3>UknCF;@xW36P z^fZ(%jJjw>eU{{t8V}8l`I8y5f{z9VKtfb?NYM8b#qn*aW;_b_S7i((qdlb2*%w|d z@77H|QP!&;8rG_0e#TIau&(k-;`AGn#Kc{RE?*LDIxNU^=NK=lbEXXwizi^VW~j{y zViZ>e{VMNXJgh{?f#?XXLIpDc16i3BTLHb&ojS)3LKPtU{b+j58mgwD3Hw56J@6$9 zvYG`*T8Kt?k3nYFDuDIkr13kVv_M#%vFun%GBH6=#0YGvF)=@Zp}Vl6pG#J_gdicI z1`kuuhCroKAvi}G7^wG=JI}E=8m{Y@*$LGU52}5423@^!-{?$xf$FwXhYm+p$!tW2P-3EsHjVcOQBdoq(^$tv&BQo zma8_&>cK8VriYcaf=&RmsKN5U8pRU_Iq58Rof~1J)vx2Gp{@)VQk~B3ns~U4LU5R~ zRv`?!uDD5g824?fV{=7~6jF3qqfvA86&u>H=6Gky2iRjmAVVWglGg{5=C~g^GB~^% z8DPNZcBC1&_M4I37MsK^DH%H`fh;xaUIk8{n?zL7NR`KxKAcLpaE?iZOLR;~e#Zqx zGJFWW(TPX?N>^w$I%8Jq&Mc2=OW{cr@Cr^yh2DvB${>-PgCl{=5sd^^ln{iQ>}-d4 zxke(o6=lpy#ugPZS_QBUf?T4CunAg23;=NEI7Pr5LK;=5a4#e=7$lkqgeP=zW-Dpy z?c}1*D&ycddQvb7l@(3aIJg-Ps9`677vHaeVi%4P9VkMfXVeioNEt)%tH{v=HJD3k z;p1wwVEjj>$K4%SB8nv*m-D%aoVkL+#O;Pq4841`Tg$3jLicyyDPP;?g@!Cd@I=5@ zib~~8b37SrV%+|EF`W~>#00~k}Ngi{9>D4iTwoop*R9k;q> z4CRVT%}wGihTtY>zb)4qDo-#GU50Yp57p_~z+l}^?|BMcNCHO>M?F%bGhR2$=Ti0hd(73Udi1r z6quz}Ie~7IQ+*@c8>f$FTppn~G{pC5P z;HC6U{V2AxSdRA{RHPiINcvMe=_G=h+;pj>vFq)`VQASA)#oVWL{<-SGO#Lj)l&Q+ zfTkgUJrMki9pv$GIgwrHTix{U$KMP*BtAcEq0R5EQ0lb@P;1)a8M`M9PyL1QR)vJY6W8$j1)eoSj$T zyOo{)J6YLzK7Q2KxTu0F6_;V-vq~-XEV&3N>q;q3*p#0kvmPD8CCR8_rxwHkK;u1T zY?h)x&90<6g+#zKg#iFsMhb0B?bRelHG!&;)FN>pUQnn`v&q9kKWT)}r5Ur*F-E<- z=K%$Q{?m1ON{Zo(fY5PPZ&@f(5tnuf6M$!0)AG$-uA;Uek{gre=${#VWL_YRl=IPt zCXvV=ePD8aHTu@m;`D4@PR>rJ^U=4Q9FHf5^RvTV`tj>e9{XkV*`uSQ2WLm)tK*Yt z{Gjgh^s+oDAD5RGPmhkzj>_@*?CAXBY<7H7UW`8YwX=%{qmLVEdJ&&LY#nwE8>3HF zFC3koT|Fs_tLhI8fB4wqm80p!aeQ5T^1(^*`0S#5a1t+k$_tO)JwAPKa&>upGLKJo z4_p1iW^?r1;!o?ZeV5mMskeCTD$kI(%iq*`%dTQ z7oB+1(UY^|>GPAb$A`zUfG5XaKRiDvE@x-fseG@Tc)YXI!)Y;pI6f;briY`e(^uCQOb+s;^g=z6YuJC<*RuJ-w$6d zr0k2w^ULzIyjc6nO8gGrC@&wLO+R0pPEX49rLa79YyFi<_Idi3S99gIG)Ir|X!AKyOv^?{3pT(J78XTL`CJG{6${p!W>Wm!r4+M_$} zr?Hv`qwl=_nV8q;3+YSa$NDVLH?zZWF+ZLhz8wGkqJoi=ckWx=`DJn9r;U^Ig;&lV zpP!wQVb8Sj{xtkwcppu_(q)f}i$_yiept*e4_|ug?JqeF&u_fr{N(C^Z#rDQGby9< z;(|aQzOnfDo9WkuzB^2RTzlkK9u^mGl|OOi7~1BI(U+snPKqaIXl=_OU$0(RoiCbT z_t)8}a!?_WC>yS`^> z8K%d@119>?mMyLB;luLey!3=`(?F%uaWyYLb9{EVVVa%L6cB#c8ch4#TX^ z=|0pAuPsI4%`)^a;eRDD2dlk_w^hIY!1GIU z^c~kel!WG|Ds6c9>Oe_TRAor0y||hw`2z;T{Wcku-i7yjQ}jRWBtyq268CS-bM$#-tR-Cb`_-}S$}Z)2(6J-c|s+)v6k zsF9PyNw{<2U^-z8RB{czTEFG>^t#nPEl%#A&dxR!d;Uni;nm`@h_yWAEmp(N&UWwR zliB?6E5{d?SH(%ZaVh_|`Qc#nORqh|`d1Uie|cL=?Di%mW6K_HWvs#BD}D=^*y)yh zr8v1N_c$ece2at8x4u^UJ!bXaz5ko(zO6J!8D8Gu{ZlG3IehEpwYK9MLQ9dPHpV;`qB#dt|24UDo!`JE`-#oMTUn(A#A+Pnv9q{kk z@s5>PC9QpSa(1yf(et%OsZLr5_WA?zSL?W-J|Hg_lSdCOLKnOeBi`z)P(U}0Y@$E( zjVT~e$pr;;FnT3@zCJRP$QfBU?==UIn12J9xqh)LQ)s!agT9sERFZtBg7|*OQ|HdyA5MLkFQThD#0$m*+z7<-%OuDS3(iU+L z&*sg-@mSfc&s`Mf505AF)~g4j@7?pEbc9~t`8DS;+TjS`BIKrIvJbk}QE z$bRk!losCR$^!0+i0U)H&^pQLG9Q+U>|WCw=Vck1`_udWo_6F9{d^Soy=w}b7ORkm zrDwIKke8bOt>~KfY-Rp$yl-1r>c@WD?Yfc^4n&Rd$D*~NNY-z-jf%NVuw3%hsI zAU3gn&oXL_t=y^U&ugg)H$T4eVD!nI-|Rg7mK!F&949@3W#Lv-0#OJ2A)5225XOr$ z!0`O!>Fx(u4ipo*w{kuzIOOiGk<*@k@6ko^?$P`luzPhHCiv+1;wSh!tX4U?yYLFi zqlXul`WSKxyd4xa`jfe$vg5J56h7td=Se0x)XddoJi@cKp&ov@b0DDlwR$Df^N#il z(s{k7`}Sg=2HIg!D9rtutPVocJMJ}h>CT0=2#55ohs8NW>yz6$vC42M^=87Ps!iE`8#KQ9 zqSf%pDOGS-g7Ye z@{JO@D;05gel-2L->JsdjaZWUWlCXM+pR_5@LfCpLbrY2 zJ`Hgs8!~w`dbhUC3tuvV(8Fp~IsHdR%O3$6f<<5`)M!>*ovb@mn;7Q=;<<(;@DJ8^ ztTL1bqdSX{BQSZey`mvnavy1llA9+20U$=|DI9?($CpoQ_q0|2(0oQraxnTO8$-rd zf7|rzXkK1&?{tA3ef;R?yN{&apcgL=L<`jts&66*Vv$c3d}0GNywt_3Qk4&6NYb#Y@2~f}0+GL7UXCwfJ7Qm!LnT8* ztpd|%r0?B3vIqZ`qx6_Ep`#z$UViHF@}evc{rhUQ-EaF9?w(ZQwnD6SxCZUlVfg1Z zKOfIC8t+_~+F#g``8C(=emD}cxE5mtA?}Qh2I--e`xTZdB?b^GC<$@0?zg5~t2; z%5{Dj%gR}ZK*}=Q8YpBoZkxaShJeCPT$GnbGiTRL_6mWfb zt2Zq$*q0XZ_p1Apm;DB*gDBdwl-otKM>0I?R{ga*48F>}xa@w=&gvjq6Wpw5k9`d^AA)kp(txsY30xCJe|w0 zsXw|FIab-;B)e5cptkKk6kqv2oCD!t$>kx_wJF>tMhm6`^mTc z@|)kDcJEKUf9qK9T;h1h*D8!V?PWYj_51qc)VbnC?D9JAVlEZ2d8F!RyVa1_)PMb1 zo0ozo3lRVAdDq%E0EAXk_Ngb7=*42{ONF$d$=34^cUPZXe_Ut#zutole-mjUYj}SG zfRj$FQQG7iZpKu*vE$qDMt<{tLELh*Z{^MHPtdn^obH{+OjJQ2D}Q``_=T6>nuG!m zf!`Njp!00JEy?-Y`yXvRLCWxL6Y_reavN>9NEx_mY5h})fun-`;9}M_2mbn@7{WrN{`(h8{LF79mmkb zOQl^$B^z^GJNZ=#U?(>EE1ofOl7-)Wv&Bk^Wlz>9fa#0N`=_g~`ReiI!>=6AkKvkM zz7UmHKYFCfhAn)g-L4K=()aB9BD!Up(^`%8o)fWjxx)8Jw1|rNvT&FnAeV_%wD^6& z)|}U<$Jzj_a^=1)-U|8H7%GsD@2()@i=*`T6>NNTIv;&JC1MjEaugh<(T|$WCdlsm z?nxXivQ3dSTbbTE+-beK2zVATrde6r+0j`d_f|RIH3a7PY;t+>40cl`HpzOewlDDL zE%}?Ct=_QvgjG)V(s6(7y_($=w6YMg*7Webi^H#tVjy_tmxQuUO1}rTiM_JOh|R0l zBQ*^LdwK~P2V-9NW#>QMw#;CE=k>9ZXjgf-9b!^*WtY2sC@*mJxD4@KQ^hrW@SWT5 zCkD-=M87_Lv?Aj`k0$7DbM0tpJB)(Ge*M7nCugS*B-$5$OSAhz{C6XS*f`=$@+OYA zt#-o{R20KT00-9RVfXoL94uI-8)U)Hot%w}lZp_y@CFvFb;7Hs*R=Z6 zN~Wvd4@RH*+OChLmHCY~uS~7{)~)bzCxdYDZcu3NQw2&NmUOvg$o8j#TBl-eMum3p>_y=z`5^KuDMl2oiS{@dT4=-V%T<*1Y zE0Xg%PgPrtr4?KN8_B_|o2oxZkroj=mup ztrP>i5wLFkifM(PrB%nxO-pFu%i{6AMA9VkO_xv4%fq+*XXMhipjd*QKd~`(n%~DS zFCQO`&yJo{VpERpB#8a!-QrO>`j>9rncSqx@|5h~p8b%k$GCa8~-E(KkfK}EsPoFS}N;Y9is#|1T&D!w)Ni1WxIj7zm&{dSj_Ebsr=*b zxH?tqa^(MV(hnBt=KpHP{-vo(XNs4R)*{-9gF1B>%J*Kwh~?ve#M7@~vEvPUa?MpD zaS+Hq9``=Za_N^l-`MEXKB)`8YUo;Xs<+=t>p-}IzZ#V1Z*R7}{Ke8QZoADrShg< zOur;Ydd=ExhVaQBtp7tpZhSPY!B@AxC5gjiEyK5ijZQ->5VzNlFXopqYy6teE4WCB zQwF1|5Ln6YaY{6rd=wtME~R?!jnDt8#(RngHLPlBlBi393s@HXpx54mlpnqE_S%zG z+I`)c?Ry2!bK`49C#z{xpV@RdgccP9^`*1Rx=lxNim;OKwDoNUo-l)6qr4E{5W*)=nHkCE=^%mPA&r?f5ez9D*lojOy63Nl#YKg znR^wOQG*lA+3&yMjp?g@MUu?g`+Do@^ljvdN5_}pue_63Nu=!KYp$;r{l!A9l7*GUemOmM+QUVP_g<<++j=>4bo^!OC?1S@ z)nczr?^+u1oJSjE%~zFvJROw}`0aDM_VwlGlJoh+sGoedjQ=hPCE*-`NPPF|DOS%H zHY#P-7r}j+^zH|jSx+1i@)z$K{rc4dhD)=l32q8lUb(`5dt4!JWGVr_3;RVBYD~`4 zeQM`B)0h9z?c={;G&YY^)D1n5!d^&Fc;LvsORC1ZLT(e`NH30cEpvN<&}YNb-@c-v z1V`g9?w;)p-u*vCxu(CiJ^8frOT}pEE~^aMt7nf1>Af!y5B1SW4_DeSk}nc_>7@Ex z%J0^C_?xGOmowT>!HYemnXgZ@lH(`0$1Seq=<7hG)!cLkxA2aInTT_>N{RpW?RDJ& z6D@@{ofp8uQV&+)`C{_BCAIZzN&Up;7ldj3&u;MM*71%MhU8=&wy7ldI-4uEBrZGNE7_@lgGu8$V829adH&Anj46 z>gMXPE;OYPr!9gHaq4>Cox>%QcF_T79eSv+7zo|2QRm^){p|a9?{n(yRFmZ@&eXzq zy)=DNDodKD788eWrd}$`*R<%VtHQ$**e!UKU-a`DJo35G_JJ z&oaN<_~X5h$2}Cy)uGwRyr@sj>cH1$UB{9%omkHMt5J60U|RveUX64x`h7Qe+ce#- zOvgWQTBhF7A&W3jEQuAT z*LrACe(WqvuToH5agbD^?w=It{m*~lDRMzQm~+rm0(?ydHc|CwEOIPcxXL>kDt-Ht zRJi#3%cOow4Z_CX_egB|z)oxao!7r9 ziP*ot-&QbMHMaS3^gSf`QNC6Gd{jwWunJ5$Eh>i2BJyARELUiQIJAuZzhQLXxq1qb z_afz?`zrpf-;+^GeFeAl-7?{wg1A*&y+S{}B{IiC=cAt({nkp~+^`F^(cA%r&yOEy zLGz_0Woh>|?jImwwelRw6!jVqMmVM8(Jj-3VI-;?#folR{l4ZH-kV+{-`*ng@jKR* zWId?gWEE`H3e|ZW=5O6SsL2ZJuhnl&tG+>LSXTcXNbIlvywA?nv2IcO3l|G#;dRRI z>Vk`W9xUjkkF(~--O|%J7<~j&r3l&kE1O_IZOX10k2)?KAyl1Q1Ex1VvKA}`P4My; zHVj@&>tOU~YgKEfaqTdF;cQ&D9DD4jQ0VZ2sG0aOj>f&k2WW;`bHtC^)|OH@Pm)-k#DECTsc3AHtZuiuT%y?J(ibzU`7 zyjXTNNH0F)J3g`g$qLT>(f#1sn)8yd%eCxwRY>%jWZ~085Rqb}HKSFDzLLy6ABgQ7 z{Z!i2q<*&3A+=VD8eGbq&#*|Pyc32f@TiwgPO5KAZ(aHEHyIzJC;*_dbQ;+lG0o_F zOUyQuc6}1o=f^yN(@4H9fzs~w zhSkeen`=qJl(D%N>G4Iu?zb&ot9Jc4y&KB%d_jbj%fBo~zjn1Ff{;xK4~tc6uE*iF zU8*b6x-fZa)z70Uu!xGKLfew)*7Sv!t2ii9Z{NM^tt9-nZ0pSW$kkdfCnWqv)a8yA zGxcWgar(*pj%I=fqo4i7@DwXB`%Mlb?Y4I8zFEHF<<>cP#)edZfv~fV%fFFL_;!4P z$4=)Hm=Uq~c#Y#A(M5^x>V*JygjAzHwk%}dhA52 zVFN%`cQf9)qU#az=L+b(Wx$iI90*d<~x^GBc7kp>>K9YLZ#a7;RIsPu< z+VSD&?A>tvDp87`s)dbUBt60@+-DI_#B19kqe)0T2KD!;szG3)GqPsv$Hvw3S<%>T1Rj;xX z$jthTpy z%y!55iY9*j_JZv4@l!hd8{6#rJHKJWJ%1d9y+K^XBVI|994G{F#Z5XG6=|rIR8;w) z{e;JU%O!71!sD$Jz#aWl7VS4j|HEcXc@uMKRc5#8O@4!=78QeI^`MpCan0lZ2FAXZ zaOxYobgbgWRceBzrN^koXd?t{s!Zs{tF@r5eVl>620E=CsMfc8i=Y;p5ES#}IB#9= ziz+7L97cn^MSQVl1h3QNc5vkW#13r`?teOvRi}tW=t&8sX5Q1Y>g71abFIBMPU`ND z-UAd?9hv9VXCqR%wv*S-xWgOheq33RBF=giv3{f9e0>!+C2l=_*+O0-Kl1a&Tz>Ui zmsjJ_0+xLKGh)=@G@CATT&g29wzk=zF#bnvcB_UB`m66qMoUIGk%%sx>p^h&#b)1HP)`;vP>m_QqN9eCXbO)nf_KXQ~8t$&eOes8%`%R+Z*QoOUH`X9d#QpW2W7~dp zxSR*07nbIwc7l_Yy7&3Ac=GhCi9GvNYkBtWp_0#cec(>|dxbN6aofz*$9f${sl1fn zn6U({Fddx$(>#OXLZW%vn%ctlG)q({&cin&vC^ zsGv=DHGz!%D|P_W>$9odgz@dR?CrQ+qM{6b?#j(o_k&!_nUD5@@4(n%Riee<&W-xi z&QGW3{9V>t>zLOXo7l&2udF>CYfbV0D}%wPKNVfmn&>$5tbzJ?d2FY|R5)Asf|qZhxCHi6pCQ zU$(izNr}3 zu0N%9daIV@^yHzach`o{H@EM(^wT?xN-dph0q{+6HKi3+Y^^O>#21`DE0)8@lIa`s4PA2+d!0 zhWHIzU$PrvOCEGwCbMvtU)R_1WdTOI8e)&X{AzStPB?was?>03P56;JP6N_xtCpL4 zPu2O=Kl7~*r5)MfVJ7{w z?h_`zXYp0{9I5-K8?V%tB+^D7bHL9F4QaXlk%surR25hChk4gEhDVpUbI%Gkx4yr+ z67ABm-%wU{Z+cc;-gpbX!%D5Ey{Ty;8?>%9^}S$lef#o#Y32Hx5o=^w%y1dAiqB89 z%eflMlmOsQkMwm6J@n(FPu6ipq+%9+PDuXfciuAPvE};juZsEd+vUj{XQoEVV@6+f zp~HENhixu2q}3ZDggaPudfw1^_4}7;Ws!1yU0vYfRBU}94rMcollhuYv>9Ztj_CU9 z+ErX1CoT1kz@=6dTWj&!bX9p*TQPCV)(wy3n7~#y$xJl;7V1?^gw`4c)(^bE{uh<9 zLDH(Z5?80(%|~mGSs6^F0qgHd53vJ=-5g)pV4Y-MAVVqSdP{4alcxf&oqMqrxK&6H z>wYl$H8=SN;@WE$B8quuE42Nc`?~=d^cT8mt2co-p|KY?@7=73zAT1ul&oe ztz@Y}R+6{1oyPh)!%&I?Ek)7M{GatGHsi($w9D*M(o$@S8YE6i4ANf zt-v=qm0KY+H%u@#VKuL124hVDYh`)!{L`NNv5gxCoPg>U;&jNe-0cmtYV+9D8_Uk! z&^ct+SIRxRhR6x8{QkGx;WgqF^e9wEYVP2p!pxY8CI~XnQ zmZ)-SdmDdTkNc|V?d@Xx|3wdwPw)SB-o;OTlMZ3s0ie1pD4D>WnTK`m(eGUXD=~>0 z+S|+z+)L5qFG`mDS&fl}%n?-Y-~%k-z0(9gSN6;OnQ3j4ATMvpsBcqU1W4(ROFywn z)S|K_5cn!M2fAy~rPufe6|i|zZ0Bq}gV8~03Na#*T(i8R<=sphhH~x1R-^jlCdzd% z8ZHfGm8MyHsA@gl)WYJm#r>c4{dp$AMtpMn4b>A?tf;kofOddy$kMzmwy8zJSv!f> z*3$;5Yv5Z~7c=~@$gJ>*u750PyT7m*kJgX5?hjqO3wx#5Z{Vd~d;5J#Gnz@ROwx|C zQRDY}im9JDB(7%d0k60C`tvu0`{i0TzETOFyK+&$#Va*jTY++wOkBU;dtOCX3Gmn{ z8n+t#-t}P@5_kq;{=WTlN_%y~9e?YqwG%5OW`S!3BFw+W+dO->_TQ6*ti@humL$b> zpt!|;S=Rn!DXdphlB(k1EWWo^b}J}sp%B8d+<&a!?b`1(LcW{avm4yo-7oZB^>VZe zt-5GNo=fI!+Xr1H2WGgGQbp;XgV7HzPxXKEh(}T z;I2BXt?Li(xt3>M-fM0LH%oZ%S$1KU+E}K>_coTSt>Yd7$g&WG%Uu_mgbTB}&vQ|O zvGX*ppNMOTt-v9p_9B5MyB)I|K7Fq~D%BNlAAfzBFsn57cGYp(#boAc+7}RonOuWw z*1Xhp+^`A?md@AmhlA0-u#%(e2J|E~Vp8T%d1%YIlILbjNo|T-xTFzcRLd zWtG;b9`$!^=FHocH>WhtUt(W7v z+kIoYWyku1Zg?ZV^_GiI!#u;qS|AWNV8!>EowaSK&(^`{uitVG>oT{Ya(G{JG}Gt_ zySC#yS8aWacrPteeKhq+UT{IaVJ-EuOCNvZ%hRss1(em@bSd@|mhEZhcrAY0Bhz{G zh=bApQf)_?^p+>T8@2exE2)#4w%(18lT_7BPpTV4*8djX?dEx^4?}GLeL4)`o|U+^ zUI(MkZk3JipO5gdy7g;&YnR?X9S~+K9F9e7u}FkP#pTA!$;-P)ntfxuCDZ%Wa(wmR zos_9u)E~@`(Xp3Z3)fCk1wUPT=CplFO;%3_;Jz9-&Eb|@)a`Dti}Oy)roYu}(s@nz zNE3)xuT8Apve=CD$&l~*)9Zm^ymm19;W|-RyQy!j`U4)j0RZ7tz1f#%YwJ;)(qxR2 zxvf@c$vWAc-3fz}`r@yOn|?8A)I08*Sj6CFUxmbnZ%0H<)^DE@{g(8Rw9{{=_1FXE zB)(pCcmlAEyKv(m#m~_aur7&Mk$fzYYwg9F*Wa1G>*e6x{n(G+nu)d`o2Nd}kx`2R zrvGV853ROj4_12(yu9HOr1eG}k-)2xcX0@}5yyl8uOQz_lDFTs{PGnjnG#xyL%%N6 zs|P^?zoFC5x}CasSE40urA|Q8%ECpnwOy~*F?k(!x9cBT%N*r~pPdRf1B6kDx#zI1 zPv>^mU9Xwa<-yYb>|S*^{j~J?_gGuqLUuk~WC?%mw&JYS%B@241$Fo>r9E|8V9nva z+CTbrr%N7fA^)Mp>X18iVDfrp$godiabI~@>YDnhrh^+rWGl`5ncEDOPS|+$whatGivbT8xsbuvUJ(prh9D{y!~!$PPwTKlXU)eHg{tXJ4Mp z>}gr9)yUM#xW07PR?@ErqvP#etCy%^xGiottOByCab^@tzfqoE1;lpmji>QrMO96E zQyHKg_1Jf-lvX0M)*r9->ZeR)C!Mc`qC<*`I9T^jFYooojq$kG*o{cPedaCKVCfqp zat(D~Nu#H`|B`gyNqoa9_q%9}i&trmmHV)M!O2#(w^DxxqksDb?9$UbE?m@|)>NPq zwe|4=jS_}mVtx^1EndH+OT0Q6wa!_`A8IFZ^{#rVpV~Qvv=V>whNpNYAMsu#K+C5> z!&s0cD?wPD`7)K@Btl98a`qXiB!1Vf+{}4z8vJ1N+ny1RCWV{&P0bH?);6G<|Gdi^ z_Eg)3l%WPIOwjnmtiv zICO!k*-E;=vyaZl8V*+JfhE?tkj3R#)%y=dll==g>^Sbwtl#Vl5d;eAG&!RBI>kFSI6$C9_-Mz#c<{|u$g*SXK z`e&axe0uOVHzllGD1lqHm{~1#t?g=As-wR(ANa;HuL$8QO3g0!dF`W>EL9D8*LG)N z>Ylkfm85Sqr)aghhgwohuY*994G7vCf?*Ku=Ps>HKcxMyBkFtWFCIMeKHOTZEDs3f zzd+=L8{+_+nc2lwR-Jtpp8nc$Ejw z*Tc{VKC6uKf+!HKw?$p_0v5+re+`OsY}CfF*f(hPk+AuxAHc!rSErqd`1JrK&8BZ)K;h};wF%| zs=x!{4MBlQydhNa25)@-|F3_of9B+VW)kc<;6MUhBVKzQ6n>2y~cIMKQ-? zM%AOUGR6yEBx6$v=JULdgb5IE)=??|Y**(@>Iri}Kn}YEH!K5&8}YwX%^5pRuJL@^ zseU9C1-UO^DQR-8jEnsow>qx#1C8vRy&qX?H{BSpgv&?1m{lId7oA~mqd6P~h!N!B z3xZ*iQGfb8k{iY8ZG{@;&*tUdarK`HKZp;p#&z^bv$VKv;Q&dXxN>6nC*_0`?2dr* zjVPl?6v;RVI%lOJ4&H ztrxAWj}D3KAU>c7Um=xEa6k}rJ*CAOsDaz0L6}vhP<{^6O0xk^%qYr10Dc`qyq-Ms z)JAVO-8{l9P1KF7*IN*0?@c9n@?bT118pfPzH;BbHR>$;M#2f zqW;N)d9T0F;;4Dq$|s%3=o`qz18Y$bSiq4hMyYGPWi4{i0mo4b4xa=sxS^N{Fw40T ztGmR1oJXZ_-5qO+Jh#2@1Ix}z&$E3;B zjG5>7E1?U4M4PH&S~4%*8=BaNYzo3Pt@d5f+$lougaarY>sK+uHMSy|OEQ#p- zC$4uBVG-%dga;u_Ec30UiUkC&D{${(BlQcuW7s>)Gw0kkf+m!>ya3{l527Jx*wVN# z+Q6W7v~RfmzJki8=K#_y@l*7mMHet(pQ7L(tRx^c-ktUkdv_>Rk-lj>Ylcu8jNpH^ zinWJ^hfkjqUBu{)8R(MBKAl5Ck`RWm-S5#@C4_k=V|1$DC{wbrR}|YEj{K{QtG-p%h}L>T zhPH@wL86c&IiBnJXd43V!5DY1I!%?R)aEK7&z`_UR6jfy-w>aGW*M)T{?1~NQVyN! zjrxCl>UNsBJNAfC5?{p4(*lFd?}C&~c&^okf}uY(T+v!4^@5Gb*V@z2H`44eIG-wY#naFS(p9X$ zF?c$A;5}qCb{$kjv@;I*NT}o1@_58J4PshG7xGUy_gn4`K6eQ~ls{dplW2x1ZyYOd z7@#MsRUM<8YPUb7@L|EZNE|3*H@q_b4*~16zZ108*IKM4@XOw}Op?05YWj{hfR=^0 zBfv8ExGH9Kgp}z~r&@8MDb~oTmMK@eNZ~6??~wIT8ozv{zm8dc(0aM9Y5q^@m|kK@ z8<8#zvUgOA+9CFxu8-sg?)xI`$gw#`dttH`rcTb)!7Bur`UT+M3UK> zv>w58Lb`7oi_O)^i5KI9mh(D|-{oGp8H3dK;ce#f!t6Hle=nObnA9;eiBerw@~(DQ z`_pa98EZDZZ+z3O8U+M&@!1OtTzqDU;GtWUUzB-tl$u!3uIwInn*el}IdS4LxD{Bg z3~MKSMD(RzfY3&82y3+_ls(u^iDkiY{`tYxt#!!sHX}R^$_`<}yg!*7+54E?tfYvJ z+B@1(jlaPol{^eLOgLd4bAP9LXIS#)XlEeBX0%N#Vg(~n&7!^+2cSy0b&^sk!~dRp zvfel*{BI5&Q3>1#iZ&oC7pMSx5`*(+EG!l#t(hffgF^>tD4#F(vm)V0-M3?k%%HPQ z)#dGr$k0Fy!FNYbjwmM7Hb7iFe9Qhfv(8%@C*bOhKufs(e)liFvLDXX*}V~|=$=}t zg|$X36E`)d5ig%e%goc@hvtWU?~=zjLV)NH>Xycg#Mg%ZkVul-$oyI`X{e{9Q)Lj+ zQGCk=rz;htGLZoQch*P1BkWcOC=7Q0uwlKYadiX+DR?l^mig%5D*93SL-g*BIZUx$ z!@fn4GYwA({{173tN2jf=8vyoE4g`59gI=pOQHwsS%IQWC)x~k=2k2%WF4`B4e1|8 z)jbsSDqMGG51R+H1gA7F-tAQ5;}f5pIqsI61&(0%Ub*eSz{ zx7j+-&zP{I<<0ZdG@r89Gx0wSOW4#hbN9)li*YF^L0PN&s!iuLry=C+3A5O2ZTI;&08hT5Rz{Ud ze^YOA)*bg;EIbb;--;Vi6(nY=)I@`(a!Wli!`+}!35bfibv%xela0~Aa0=83kE%Bp zHHcMFvm2z~JWIN=}^EYF@ z^McNgb(U<`Mg8~c2n0!s#oRaZz6pszHej%ojny_QSKXmz8k_raO2{z!tHTQ!7G4;ww}PMiY`$=c zrOJ-OVe3lyDCZU^ghF}NNppNbDq5)&bAMXaNQO&0)ra_dNy2e-ET-vw(~B3<^BSY1 zWTc71Xu38?{Y(ObYg`N=GPN0SA_DoJv3~}H&j88ktRO~Jz*nq87LeTWr+)1YMr@(4 zeS(ZWm5G=QRI0~#9jp~@rb212aMx&2o0^f}X(V@^atM zorD}%5#XTsUp{DlgDZnzI~U4;%w{9RUF&$G1C=J;6Cc8yi+Xii zh&jzTJC_+n-=aHOOj_7L5%~*M^}&57D%3Jr4L2jeGUT5%R9l9S7hp zlvNx6B6(#1L<+Uha&L!ict%tG{DQQF`FSIeb1JfrE)Ic)z3_!?iW$T%lH3~t)Q;2W zpY)^T*A6CRiy2v~nrYcvg9*^AlH_C|WDO)3a|uD<5jxryop^ZAUn)Ijvl`rWr>*=M zXVW4OKcw>|Z0*6wlkdnmiVqyRiFg7JGG9dZN%ut`ok7E_i}sNC0*zvp9BI6(@~>5l z(1ULPo6Kc!n&)ZXbzE-}x8mOE_Gn=LN6zQRempzGG7^%x&9p?(y#t_DuGAg!Fg~}J zPEIeX{5zu&_JSm9Pnt+pz(FGrfDelxkxBwDM)`XdNo2&(T!(dd358C^D&_5DyJSo+s3lG86jWN?RNTyaan?2u@m^gx znCJ_OXU*5f{@g)Ryyf3urlgPakt&M}3&uf=zsR3+Ml4?+prF>6ByZQfgMEwt!utp#*Hzkd#R#zo_(VO_*MSBGUU~K% zuDuCo;Od!OJ^0?}u2^sTkaE0RS*7GF&ATi7k@0WiY6@jg%6c%gTd&7AU zq&^Zsw9isJe5;}i0(_L`xD5dTO=1^cr|2doQ1w@{9@tg*Hh+G`aS<)SMG)CGOa%7| z{RUhQ>D^~8X$(#=y|?<$;!#6;D1e3i&){5(cg_NTh}J8SQ`Xh)R1WJ6YbU;#0I^qq z*hAmfa7u{mXlbQiamH_of2ZeT{;@iw5&7te&je3XG$FB;!`s&LL8aOCWeLbANrrc- zwKR~S?}aKSW+s@`C=Mo+Si0#v+=USV5z##AXnQM+h@!Snl<_sLg-QIEdE;tdU1!`8 z2U_#o;jia6)0+%uxb(hj0^~w!$Z*8`Cwj3L%(0}>ul7%%8nA_sN~0JMz=qQ80@=R& zg}kbXe=Var@IX>yT+2(z9By~?z?U~x&1!jO z_h^5cx+Yo*@csS%Vhjvwti?iC0E|36aTMZ$cGz(BA7d6?8`k_^C{2U21zuq7)~SBE z#f7&5btN}_8|oQ#zY=Q^iOc9|dJs?RU!IDYR8QNk-w@c&m?2J`Q~LKg`g89x`fatrKR|= z5lMmvM_t-;_?o~jhR@UO?^A*iRgK-X{r(VU@|>?^`E#5Lo~jv7l`bfn+0P&R%w>Em zs_2Y=$L*;rZRPW_v9w5xQZ@{<%e2pCaw~w8j6gGvYWEgNjL=RZr8m-0Vke5z7N+7v z3BBFIz)0MntLbah%Db$VMng3emZd^&l!vJPCliIBidTlasE^fO{gbF?DcUJrwUK0` z_I3o`7ur(bd`ke9MvVTD?xLv9#k+YDXgmdeNBcQyfP{JvC4u9TEGrZT2giZ2-t2w~ z>WBXmn!0TuMB{KkER=5HE-}6x$D^B<{}ic`*K7O+U%Xp5wtck)wfeqO2`s4bPWE?D z_Ts8m>Q(v&{H5I%eZjj&;&N@fzYhcM>ya(Kg@VVrd$=_s6Pq)*H@8L(Ban!Uj7F|q zS-|hUYz8$n?i!cWc4&fHTx~s0F*4jQtZEe#vwL2^Kqyp$3B#Dh$?tm4*L14yE_{R} zgxVp`B=6pYE6n00rfx2>JXy%hOv$oxm5Um)C>MV=H@i>73q$yKDw*KU`;@j=^3SkT z{1j^a>kTqtKrB%4VxI7ouo+#7wm_8bDkK`HN{WPol|)>OLU97^DzENxzGf?@~1;V{B2Kd`qw%Rvxoyf9bXh!Z-*O;tW5!}@J-o&T%NyBn}(PtRn zG(goaikuEWqYRn7 z7U%PcvlGuDB=Hoxre0YY`{{VI2(N|@Z1o$`Ft8T64q@duFGmrzvwFrF0n8TjV92Js z3F8NwIgc%W9!30vdO%WF$w1AOvxqu|4-d9HaH@AUF^&We-H)l#OH%k zqymJTyeSg@y&nB}`Q}y1NY>NLw4zS+26qW13sanm;A;zYTZ0Pzx~&7@P}e8K#L9c2 z?BGMhpbujIl^JowTY}Y%T&hxP*hQ>(jA#WqAyHDo7-^EQH3VkUS;<$Ta?;*Qr%}C? zVsJ;jwfCD3kifhPvc+f(qF9NqyK-WZ6dc?UWS&&k5vL=o19^9mKPYlkq?M4H-seV=IpvUK z_%5cj$5dr=y?Jjqg4jchd}&+T{Z9OGt~TX_rWG7X@$d zgBmy9bN#gQjuVi3GMpk6M=36o-BhX#UMRfQ~Bbgu<|2{#8>sk02)OLC_ z*KCeuRiFWBiXcPC_5=6_3g%@-B0XLeX46uW@C!nvDsx;-*V&ZLVfF4)yKVQ`x_@}| ze7&=^J&n2{PAC7tocUWu#ycs(8{*?oup*|gB4EB>80{h8y>J;XyjCNFy)!+MSQLxP z!HDGUx3mRTe{X#hog@_zxX7jc zSCirO_fEB&?yNq>`C1AE=-g-=4r}A*$51GE6jxChZPBWf-%?nFPbOo0>Z?FDNXaB? zMVwHa{J8<8I!Wa`6dGjwADu{`T|L;H?w|;QidpLc6)1S*OcpJ#l2F@W+B8})PZ3tP z3!No60a}++tPvDSP^-{H49yr5L{DYn$J)krJvcy=RU?Nd4>gIUD{4gj)P?rb?(s=whQE02dcAvfgs(;1(*0R80t-?}VH-5YqoS8cT&1+zt3MCw69aGvra63_))*FFHaR*)Gl3^^PPCqIF#ZS-<6vK9 z48hISHI**qKjn_~U#V$*{5!t2gwUvT**XNR;IH>6uTHvzsxduVj zX3kJw-tA8&mf<8!UChX*S+j;P6J=&oW=E01ja*=Tmvr5DXB{nenOs1jU#C-DV3Nrg zwWjEKG<2|5M3R9!d;k#cY!Broy~+O0uqTy!y`Axk)#qEtKuM|zeYp%Dxex3+04;J= z1AzrB(*z7Wdu3}#Y`uIjPYyGev_}%uU5iCEpGHf?I^G%le^@k!$wpX-LQp+*NLhq? z`?t}|o80HVh}3}!`c8E-l>$uM5Wp7)Q!=<^KdJ>hWy7#rXcLhhuEPe@)QS;3Tz?2=_m?5RK%{FR9M zlwl1XNiIjI4kH6@@AY_ga&K?CJ*a*(J!$>!NX+tHi`&cMR3}9H0n?f30(VY~Jah3b z9`1eIxP~uI=bcB%GuJP3pN6a9`?nUUVU5~x(Zzw=g$X~qyHsKt0`?q?!f7aTJ)wU& ztAAPaFKrHz1QL`atp$)JQEk4J+{F7ixCkePer4Zgw52 z;;Cf=eq`Y=55a%4f=X~ZAxhxyOpg%Q8v?&G5?1z3+9$cj+v%N31{g*6C=08AYpTe? z;JR<*{UR3q4G)~{1)^w@hY9{t7cI5qgOi6oZ$dfjDciwVy5MWyvtMqqqE74Z7hc<^ zfJ=Wj_V8KdQFvx9a4QJx!_n>9HIxUbkUgD7(4g_TE;I~^^6joNhMyjr#yWYp@gXD|_(Jj{35&>AdK2Bl0v3Q7xJ4Ob zvl0FDErCW3n@ix_6@sh`*fTuhAgi<6fy}8Ed~}Zdt{Ym-H0j!~{IdY~g}sTF1{-W0 zl_r2$Q6h)aseXILfhluaO(yCYugzz~!5aB1y#uP*Mq`GwHNyjqq;t+j^lkbO{zh-6 zFLPE``Yt{j$CC91B5LmOAi+SzU^M`k7DQ+*Nm*UYU=2rwh=9MwyC)otAxZK)8Szj| zKwtxqq=Fp>`l6?y)UJFZ^q$nc(LEZpK)L2-cfF79buzLrkC^60pk>3M^0|HrnXat& zNJ$r*{($Z=YgVihONd`@VAtwIP3WqB{SJJ}{@{tT)nDg%0w=7HDNNcI_22WuW|I9M-$v+A zR88#H$h2sO2j`DC{C}5$I0=Xnb}z=j6`ltU`j^5tichwU9PuvYiNUAhrkO#FG2`og zZZ6nf`o27h zFx->w(%N+@ye&*DH#ozC(VgLHe+(ZIXNW)EkzaG=A~l>0r?RWz+a&I0EXIc^R%;do zN2CKW`2KhcK++Dwss%8}7xey~X$E&jo7z0FH|(3@_{`ABP`l#RSwk1y_bv?FsNiER zuP!PyVuZOcv%{`*BRV1MLTWgr29m2n3`e8{e_E4HG`~(l90Y_cjWT>W(YAxJkAh_@ z*?b4WZy8ZANBG@^9Zw#G|Niv3-U}pgMrg6;8M2;?EPDH{gyF$7-{JwMqnD-GuQOUIq1T!XhU-8%25pI#PM}Rhnug(-}I{VYUVX(**N;}F=`mj zZ(*Qep^V`UkZU9^phlu|$7VxOy;OdMB>o#`{#2JP`i98Gr~Gg4@qc?V-jrlf$F(-H z)Tuu6GK+H>dH6C2^oD$3YR=?D1LoslT!9-Bs)CK`zQ#>AJ$ z1v(k?7bmxS6Oh2hc6Vno?sv}s3#lpcSmUPX%&?RC7-%toOdzdy9@CA3aIK|Ag8z#L z@Ya{cqdn1be5mPq@SyAN_Ik#_|E0X+LkgL!M#Sgc-(pKxHy~WcLP0OK!C-iE`g4F6GZbMd zxl`@6GL1w@`BBg!lzXS8Ic&=Y!?CMX9?verd;_NfSta%~$VGDkOK?o+0u7sRsD%wx z!gxW9MVz^mk%Z{=w$OZonnrs&KYY%bJP`ab5JAnRmznN^E@zh(E9#kBqUWPH2}r~f z=4C=E^$%a0C zipksCc7ev`Wk9#@;C$kqwuXEgNI#e>IAMTjhSpH&Q~sS;0+QKREFZp9qceSsVORSx zsmyuPJ(m*CK=5aqV#Agbn{aFfKE;Ow9nTj_yfb}viSNde7+xD0GJqwaPzYM3B7UZO z;K|XI@P6FiNO1E#Ecm2TEV_#}m%mJwj4MZdjaK|5WsG+Aaqr`z1_ZooppiKfD)|Q5 zI>OvEGAk9JL5iK!sGUp)m^d&9rY6)53QRSG@ah@0k2c?ek473(ZNVY^EJs6`A#eqt zZqiApR;tLhLF3_IsM@uMh+L17CDjgx2bvHJ9({)~7zn&aq z{Be(XZI9{|E_g%)aaZF<#yB(iHcF@6Q%Ww*$Nkr9BC=N!KDlgX5AFYz@?(OF&Nlre zyNNl4mFYfcag3HVe4H9~XuArp(dM66%PE_)QUwTkgXsxj(I8uH!Uu_UkJ5>C&MT_8 zFzEy~j$w!|p^Ib#BU>mh0+f|8y2dvrjNS5h_7-}B>Z>h5wkQ-P#vpgKSqH!c+emdv4Pn{|=y!$%Z z2XF5HR?PJQmT&&p3>P^C3_=w-YW~!UCx;ZUT<8J03d-%H7KQSDsFK->Hzi%itpGK- zG2Yq7jmB%t2y9cZiynT|P9kfBN%VAXj5Ji|s@qnEI2o#Mi-Inyy*@JI+m$6PzYBAu zx$97f7k{^|!9Dn*mEF1DP?Q`l%pIaqfqj?=Q5yY`RJ;+<3P8a>XM}bV z(T>^N2g09@KRCI~eTfZ(`w(RI|Dyc^v!h-e{`Q9Sk-Gwz-1gYtTs;p}->R7&Eeq96 zU(Xrd2}UYYsTEfUagsZyv>!4T(J7#gcyw@B_YVjQoce95@AVmEAGPsy!VF9+O&A@t ze?ev*40rZ+x&!z)6h~&78?6%~OuBNkS^}8YC{}+<+#(ZP*LqUnO72uIq`AC!|1*HCd=7vf2YfLvN#vt3<}wOwr}}ulelv1&)#aV4 zAA&$&BakjfU@1y}iS|sTrs8@vO5Qqdv{pvX7{|beg4dee&M*paR__gaDn5#${Fr=z zAp9`=s{{EFfdA_w=K&EeHo2@1$iL|#!mapRhVhjU8c=(7yeHM8sf1+Y!fxA``^G}Y zMLxXbeLW_E-O+k~SIRM*VHTBWa0f=9nPuhjPL&z(OeH?KY%L(P1$wOwbyLt^;zFLeCX0|V;#olw_0u%D{8hP8-(JwXaqd8hi-a;93v zi!Ycwu2EK~#a7)tJB|M55&gdGEp{N7EvkL@a((<|L*yF z{zxW%Ajn%0`gsj(jjVez*NGw&<@#&JT6GW4^WzIhMsv!YnG!<1?(e~Uqa3wD`-uin z?xc!k$C}=SiCG-6L+2tDkikpr7($RNEATR0@SWqc$FgsVP5(st;gP0I9XoLluaKLV zdWq^CzI$_P`^??N+p&$BE|&2UzpJ$L?dh$*|JT3!r!RfvE5G>W7hd=J*PeRa{)fN* gpO1a)zEdCgtBYT_|34PCzxbNJ`R_;m;O$@jKi79tqyPW_ literal 0 HcmV?d00001 diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json new file mode 100644 index 0000000000..c1d7f2129d --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json @@ -0,0 +1,45401 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x4e", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 2522 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.access$getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd7", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl.dumbModeFinished(com.intellij.openapi.project.Project, com.intellij.openapi.fileEditor.ex.FileEditorProviderManager, kotlin.coroutines.Continuation)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 447 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "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)", + "filename": "FileEditorManagerImpl.kt" + }, + "line": 118 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$dumbModeFinished$1.invokeSuspend(java.lang.Object)", + "filename": "FileEditorManagerImpl.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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xcc3a29", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcc3a29" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x685b45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x685b45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xdb21d0", + "lines": [ + { + "function": { + "name": "libjvm.so 0xdb21d0" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xdb24bc", + "lines": [ + { + "function": { + "name": "libjvm.so 0xdb24bc" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6a88bb72f03b51a0", + "lines": [ + { + "function": { + "name": "ExceptionBlob" + } + } + ], + "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": "0x13d", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 102 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6f6353f7de2420d8", + "lines": [ + { + "function": { + "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x98d61", + "lines": [ + { + "function": { + "name": "libc.so.6 0x98d61" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd141d3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb3d80" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "0x98d60", + "lines": [ + { + "function": { + "name": "libc.so.6 0x98d60" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd141d3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb3d80" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "ThreadContext.kt" + }, + "line": 31 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)", + "filename": "ThreadContext.kt" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(kotlin.coroutines.CoroutineContext, java.lang.Object)", + "filename": "ThreadContext.kt" + }, + "line": 61 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "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": 270 + } + ], + "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x4b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.json.internal.StreamingJsonDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "StreamingJsonDecoder.kt" + }, + "line": 171 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", + "filename": "UTF8StreamJsonParser.java" + }, + "line": 2496 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getValueAsString()", + "filename": "UTF8StreamJsonParser.java" + }, + "line": 337 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.StdDeserializer._deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "StdDeserializer.java" + }, + "line": 262 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "BeanDeserializerBase.java" + }, + "line": 1588 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "BeanDeserializer.java" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "BeanDeserializer.java" + }, + "line": 187 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext, java.util.Collection)", + "filename": "CollectionDeserializer.java" + }, + "line": 361 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2b", + "lines": [ + { + "function": { + "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "CollectionDeserializer.java" + }, + "line": 246 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", + "filename": "CollectionDeserializer.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "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)", + "filename": "DefaultDeserializationContext.java" + }, + "line": 342 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x57", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)", + "filename": "ObjectMapper.java" + }, + "line": 4905 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper.readValue(java.io.InputStream, com.fasterxml.jackson.core.type.TypeReference)", + "filename": "ObjectMapper.java" + }, + "line": 3893 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.parseXmlIds(java.io.InputStream)", + "filename": "MarketplaceRequests.kt" + }, + "line": 697 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.loadCachedJBPlugins()", + "filename": "MarketplaceRequests.kt" + }, + "line": 624 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 308 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 294 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "0x80", + "lines": [ + { + "function": { + "name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", + "filename": "HashMap.java" + }, + "line": 585 + } + ], + "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": "0xb", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)", + "filename": "ExtensionsAreaImpl.kt" + }, + "line": 278 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)", + "filename": "ExtensionsAreaImpl.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl$intellij_platform_extensions(com.intellij.openapi.extensions.AreaInstance)", + "filename": "BaseExtensionPointName.kt" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Iterable com.intellij.openapi.extensions.ExtensionPointName.getIterable()", + "filename": "ExtensionPointName.kt" + }, + "line": 134 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider.lambda$getFilteredScopes$0(com.intellij.psi.search.scope.packageSet.NamedScope)", + "filename": "CustomScopesProvider.java" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider$$Lambda+\u003chidden\u003e.value(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x44", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.util.containers.ContainerUtil.findAll(java.util.Collection, com.intellij.openapi.util.Condition)", + "filename": "ContainerUtil.java" + }, + "line": 1031 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.util.containers.ContainerUtil.filter(java.util.Collection, com.intellij.openapi.util.Condition)", + "filename": "ContainerUtil.java" + }, + "line": 1006 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.psi.search.scope.packageSet.CustomScopesProvider.getFilteredScopes()", + "filename": "CustomScopesProvider.java" + }, + "line": 17 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getPredefinedScope(java.lang.String)", + "filename": "DependencyValidationManagerImpl.java" + }, + "line": 69 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getScope(java.lang.String)", + "filename": "NamedScopesHolder.java" + }, + "line": 172 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String, com.intellij.packageDependencies.DependencyValidationManagerImpl$State)", + "filename": "DependencyValidationManagerImpl.java" + }, + "line": 253 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String)", + "filename": "DependencyValidationManagerImpl.java" + }, + "line": 249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "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)", + "filename": "NamedScopesHolder.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "lines": [ + { + "function": { + "name": "com.intellij.ui.tabs.FileColorConfiguration com.intellij.ui.tabs.FileColorsModel.findConfiguration(com.intellij.openapi.vfs.VirtualFile)", + "filename": "FileColorsModel.java" + }, + "line": 240 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.lambda$getColor$0(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", + "filename": "FileColorsModel.java" + }, + "line": 210 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tabs.FileColorsModel$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 262 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 863 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ReadAction.java" + }, + "line": 66 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.getColor(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", + "filename": "FileColorsModel.java" + }, + "line": 209 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.tabs.FileColorManagerImpl.getFileColor(com.intellij.openapi.vfs.VirtualFile)", + "filename": "FileColorManagerImpl.java" + }, + "line": 153 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1f", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.tabs.EditorTabColorProviderImpl.getProjectViewColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "EditorTabColorProviderImpl.java" + }, + "line": 31 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.openapi.fileEditor.impl.EditorTabPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "EditorTabPresentationUtil.kt" + }, + "line": 88 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.openapi.vfs.newvfs.VfsPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "VfsPresentationUtil.java" + }, + "line": 41 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.openapi.vfs.VirtualFile)", + "filename": "FilePresentationServiceImpl.kt" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.psi.PsiElement)", + "filename": "FilePresentationServiceImpl.kt" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ide.util.treeView.AbstractTreeNode.computeBackgroundColor()", + "filename": "AbstractTreeNode.java" + }, + "line": 290 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ide.projectView.ProjectViewNode.computeBackgroundColor()", + "filename": "ProjectViewNode.java" + }, + "line": 361 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "com.intellij.ide.projectView.PresentationData com.intellij.ide.util.treeView.PresentableNodeDescriptor.getUpdatedPresentation()", + "filename": "PresentableNodeDescriptor.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ide.util.treeView.PresentableNodeDescriptor.update()", + "filename": "PresentableNodeDescriptor.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ui.tree.StructureTreeModel$Node.update()", + "filename": "StructureTreeModel.java" + }, + "line": 540 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d", + "lines": [ + { + "function": { + "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.invalidateInternal(com.intellij.ui.tree.StructureTreeModel$Node, boolean)", + "filename": "StructureTreeModel.java" + }, + "line": 247 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.lambda$invalidate$5(boolean, com.intellij.ui.tree.StructureTreeModel$Node)", + "filename": "StructureTreeModel.java" + }, + "line": 211 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "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)", + "filename": "StructureTreeModel.java" + }, + "line": 146 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$1(java.util.function.Function, java.util.concurrent.CompletableFuture)", + "filename": "StructureTreeModel.java" + }, + "line": 124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.get()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$Task.run()", + "filename": "Invoker.java" + }, + "line": 361 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.concurrency.CoroutineInvokerDelegate.run(java.lang.Runnable, org.jetbrains.concurrency.AsyncPromise)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 38 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker.invokeSafely(com.intellij.util.concurrency.Invoker$Task, int)", + "filename": "Invoker.java" + }, + "line": 189 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(com.intellij.util.concurrency.Invoker$Task, int)", + "filename": "Invoker.java" + }, + "line": 173 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$Background.lambda$offer$0(java.lang.Runnable)", + "filename": "Invoker.java" + }, + "line": 470 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.Invoker$Background$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.util.concurrency.CoroutineInvokerDelegate.offer$lambda$2(java.lang.Runnable, com.intellij.util.concurrency.CoroutineInvokerDelegate)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.CoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend$lambda$1$lambda$0(kotlin.jvm.functions.Function0)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 97 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext$lambda$0(kotlin.jvm.functions.Function0)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 73 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 72 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend(java.lang.Object)", + "filename": "CoroutineInvokerDelegate.kt" + }, + "line": 96 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": "libc.so.6 0x98d60" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd141d3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb3d80" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "0x1f", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()", + "filename": "CoroutineScheduler.kt" + }, + "line": 924 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x63", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()", + "filename": "CoroutineScheduler.kt" + }, + "line": 860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x62", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", + "filename": "String.java" + }, + "line": 1425 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", + "filename": "StringsJVM.kt" + }, + "line": 217 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", + "filename": "Encoding.kt" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", + "filename": "Encoding.kt" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "Primitives.kt" + }, + "line": 160 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "Primitives.kt" + }, + "line": 156 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 100 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void java.lang.String.\u003cinit\u003e(java.nio.charset.Charset, byte[], int, int)", + "filename": "String.java" + }, + "line": 532 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", + "filename": "String.java" + }, + "line": 1425 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", + "filename": "StringsJVM.kt" + }, + "line": 217 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", + "filename": "Encoding.kt" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", + "filename": "Encoding.kt" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", + "filename": "AbstractDecoder.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xbd", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "int kotlinx.serialization.cbor.internal.CborListReader.decodeElementIndex(kotlinx.serialization.descriptors.SerialDescriptor)", + "filename": "Encoding.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6f6353f7de2420d8", + "lines": [ + { + "function": { + "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readExact(kotlinx.serialization.cbor.internal.ByteArrayInput, int)", + "filename": "Encoding.kt" + }, + "line": 432 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68", + "lines": [ + { + "function": { + "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readNumber()", + "filename": "Encoding.kt" + }, + "line": 426 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "byte[] kotlinx.serialization.cbor.internal.CborDecoder.readBytes()", + "filename": "Encoding.kt" + }, + "line": 394 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", + "filename": "Encoding.kt" + }, + "line": 383 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", + "filename": "Encoding.kt" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", + "filename": "AbstractDecoder.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xbd", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 13 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 80 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "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)", + "filename": "Decoding.kt" + }, + "line": 538 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd1", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 1034 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 999 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 758 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xfd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", + "filename": "HashMap.java" + }, + "line": 663 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)", + "filename": "HashMap.java" + }, + "line": 618 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdb", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", + "filename": "CollectionSerializers.kt" + }, + "line": 84 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", + "filename": "CollectionSerializers.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "CollectionSerializers.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", + "filename": "AbstractDecoder.kt" + }, + "line": 70 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", + "filename": "data.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", + "filename": "Decoding.kt" + }, + "line": 257 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "AbstractDecoder.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", + "filename": "Encoding.kt" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", + "filename": "Cbor.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x81", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", + "filename": "InternalStateStorageService.kt" + }, + "line": 58 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "LocalSettingsController.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", + "filename": "SettingsControllerMediator.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", + "filename": "SettingDescriptorImpl.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc5", + "lines": [ + { + "function": { + "name": "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)", + "filename": "State.kt" + }, + "line": 191 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 293 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc2", + "lines": [ + { + "function": { + "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PluginAdvertiserEditorNotificationProvider.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 244 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "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": "0x59", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 53 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 49 + } + ], + "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": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x189", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", + "filename": "EditorNotificationsImpl.kt" + }, + "line": 241 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", + "filename": "AbstractCoroutine.kt" + }, + "line": 97 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)", + "filename": "DebugProbesImpl.kt" + }, + "line": 545 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 46 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13d", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 102 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xad644", + "lines": [ + { + "function": { + "name": "libc.so.6 0xad644" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2f3db", + "lines": [ + { + "function": { + "name": "libawt_xawt.so 0x2f3db" + } + } + ], + "mapping": { + "start": "0x13000", + "limit": "0x5d000", + "offset": "0x13000", + "filename": "libawt_xawt.so", + "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRBackendNative.XRenderRectanglesNative(int, byte, short, short, short, short, int[], int)", + "filename": "XRBackendNative.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRBackendNative.renderRectangles(int, byte, sun.java2d.xr.XRColor, sun.java2d.xr.GrowableRectArray)", + "filename": "XRBackendNative.java" + }, + "line": 217 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MaskTileManager.java" + }, + "line": 183 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc8", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)", + "filename": "MaskTileManager.java" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)", + "filename": "XRRenderer.java" + }, + "line": 275 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", + "filename": "XRRenderer.java" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", + "filename": "ValidatePipe.java" + }, + "line": 160 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)", + "filename": "SunGraphics2D.java" + }, + "line": 2532 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)", + "filename": "RectanglePainter2D.java" + }, + "line": 211 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)", + "filename": "PaintUtil.java" + }, + "line": 402 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xde", + "lines": [ + { + "function": { + "name": "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)", + "filename": "RectanglePainter2D.java" + }, + "line": 210 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x40", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", + "filename": "RectanglePainter.java" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", + "filename": "RectanglePainter.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", + "filename": "RectanglePainter.java" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)", + "filename": "ScrollBarPainter.java" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", + "filename": "ScrollBarPainter.java" + }, + "line": 192 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe9", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 150 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paintTrack(java.awt.Graphics2D, javax.swing.JComponent)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x240", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 309 + } + ], + "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": "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": "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x324", + "lines": [ + { + "function": { + "name": "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)", + "filename": "XRTextRenderer.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa5", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", + "filename": "GlyphListPipe.java" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", + "filename": "ValidatePipe.java" + }, + "line": 165 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x42", + "lines": [ + { + "function": { + "name": "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)", + "filename": "SunGraphics2D.java" + }, + "line": 2962 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)", + "filename": "SimpleColoredComponent.java" + }, + "line": 1500 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)", + "filename": "SimpleColoredComponent.java" + }, + "line": 536 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1ea", + "lines": [ + { + "function": { + "name": "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)", + "filename": "SimpleColoredComponent.java" + }, + "line": 895 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x15eefa", + "lines": [ + { + "function": { + "name": "try_to_wake_up" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15f46f", + "lines": [ + { + "function": { + "name": "wake_up_q" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x225ea6", + "lines": [ + { + "function": { + "name": "futex_wake" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x22291d", + "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": "0x9b05e", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9b05e" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xfb2099", + "lines": [ + { + "function": { + "name": "libjvm.so 0xfb2099" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "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": "0x1e", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", + "filename": "AbstractQueuedSynchronizer.java" + }, + "line": 645 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", + "filename": "AbstractQueuedSynchronizer.java" + }, + "line": 1060 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.locks.ReentrantLock.unlock()", + "filename": "ReentrantLock.java" + }, + "line": 494 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void sun.awt.SunToolkit.awtUnlock()", + "filename": "SunToolkit.java" + }, + "line": 271 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)", + "filename": "XComponentPeer.java" + }, + "line": 726 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor)", + "filename": "XComponentPeer.java" + }, + "line": 699 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XGlobalCursorManager.updateGrabbedCursor(java.awt.Cursor)", + "filename": "XGlobalCursorManager.java" + }, + "line": 107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x89", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)", + "filename": "XGlobalCursorManager.java" + }, + "line": 94 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9c", + "lines": [ + { + "function": { + "name": "void sun.awt.GlobalCursorManager._updateCursor(boolean)", + "filename": "GlobalCursorManager.java" + }, + "line": 205 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void sun.awt.GlobalCursorManager.updateCursorImmediately()", + "filename": "GlobalCursorManager.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.updateCursorImmediately()", + "filename": "XComponentPeer.java" + }, + "line": 695 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x31", + "lines": [ + { + "function": { + "name": "void java.awt.Component.updateCursorImmediately()", + "filename": "Component.java" + }, + "line": 3262 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void java.awt.Component.show()", + "filename": "Component.java" + }, + "line": 1730 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x30", + "lines": [ + { + "function": { + "name": "void java.awt.Window.show()", + "filename": "Window.java" + }, + "line": 1078 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void javax.swing.Popup$HeavyWeightWindow.show()", + "filename": "Popup.java" + }, + "line": 270 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void javax.swing.Popup.show()", + "filename": "Popup.java" + }, + "line": 112 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.popup.HeavyWeightPopup.show()", + "filename": "HeavyWeightPopup.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "void javax.swing.JPopupMenu.showPopup()", + "filename": "JPopupMenu.java" + }, + "line": 886 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x75", + "lines": [ + { + "function": { + "name": "void javax.swing.JPopupMenu.setVisible(boolean)", + "filename": "JPopupMenu.java" + }, + "line": 829 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.setVisible(boolean)", + "filename": "ActionPopupMenuImpl.java" + }, + "line": 164 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "void javax.swing.JPopupMenu.show(java.awt.Component, int, int)", + "filename": "JPopupMenu.java" + }, + "line": 1003 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.ui.JBPopupMenu.show(java.awt.Component, int, int)", + "filename": "JBPopupMenu.java" + }, + "line": 54 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x135", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.show(java.awt.Component, int, int)", + "filename": "ActionPopupMenuImpl.java" + }, + "line": 146 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.PopupHandler$2.invokePopup(java.awt.Component, int, int)", + "filename": "PopupHandler.java" + }, + "line": 132 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.PopupHandler.mousePressed(java.awt.event.MouseEvent)", + "filename": "PopupHandler.java" + }, + "line": 47 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", + "filename": "AWTEventMulticaster.java" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", + "filename": "AWTEventMulticaster.java" + }, + "line": 287 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x36", + "lines": [ + { + "function": { + "name": "void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Component.java" + }, + "line": 6659 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "JComponent.java" + }, + "line": 3394 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Tree.java" + }, + "line": 479 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.dnd.aware.DnDAwareTree.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "DnDAwareTree.java" + }, + "line": 46 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.Component.processEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 6427 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.Container.processEvent(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2266 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x228", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 5032 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2324 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a1", + "lines": [ + { + "function": { + "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4963 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x90", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4574 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 4518 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2310 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Window.java" + }, + "line": 2810 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 783 + } + ], + "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": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 755 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 753 + } + ], + "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": "0x49", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 752 + } + ], + "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": "0x43", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 621 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "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": "0x115", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "0x3f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 117 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.util.Set kotlin.collections.SetsKt__SetsJVMKt.setOf(java.lang.Object)", + "filename": "SetsJVM.kt" + }, + "line": 20 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.Job com.intellij.ui.DeferredIconImpl.scheduleEvaluation(java.awt.Component, int, int)", + "filename": "DeferredIconImpl.kt" + }, + "line": 200 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "DeferredIconImpl.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa5", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "RowIcon.kt" + }, + "line": 110 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)", + "filename": "IconUtil.kt" + }, + "line": 251 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2088 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2099 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)", + "filename": "SunToolkit.java" + }, + "line": 2084 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void javax.swing.LookAndFeel.installProperty(javax.swing.JComponent, java.lang.String, java.lang.Object)", + "filename": "LookAndFeel.java" + }, + "line": 280 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.basic.BasicLabelUI.installDefaults(javax.swing.JLabel)", + "filename": "BasicLabelUI.java" + }, + "line": 369 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.basic.BasicLabelUI.installUI(javax.swing.JComponent)", + "filename": "BasicLabelUI.java" + }, + "line": 348 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.setUI(javax.swing.plaf.ComponentUI)", + "filename": "JComponent.java" + }, + "line": 743 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.setUI(javax.swing.plaf.LabelUI)", + "filename": "JLabel.java" + }, + "line": 274 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.updateUI()", + "filename": "JLabel.java" + }, + "line": 288 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x53", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.\u003cinit\u003e(java.lang.String, javax.swing.Icon, int)", + "filename": "JLabel.java" + }, + "line": 180 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void javax.swing.JLabel.\u003cinit\u003e()", + "filename": "JLabel.java" + }, + "line": 251 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10d", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.$$$setupUI$$$()", + "filename": "PresentationModeProgressPanel.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.\u003cinit\u003e(com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", + "filename": "PresentationModeProgressPanel.java" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.show(javax.swing.JRootPane)", + "filename": "ProcessBalloon.kt" + }, + "line": 63 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.addIndicator(javax.swing.JRootPane, com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", + "filename": "ProcessBalloon.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.InfoAndProgressPanel.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", + "filename": "InfoAndProgressPanel.kt" + }, + "line": 248 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x59", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgressImpl$intellij_platform_ide_impl(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", + "filename": "IdeStatusBarImpl.kt" + }, + "line": 541 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", + "filename": "IdeStatusBarImpl.kt" + }, + "line": 464 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.doBackground(com.intellij.openapi.wm.ex.StatusBarEx)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.initializeStatusBar()", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 94 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(java.lang.Runnable)", + "filename": "EdtInvocationManager.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "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)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 68 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 56 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "BackgroundableProcessIndicator.java" + }, + "line": 41 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.progress.ProgressIndicator com.intellij.openapi.progress.impl.ProgressManagerImpl.createDefaultAsynchronousProgressIndicator(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "ProgressManagerImpl.java" + }, + "line": 149 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.util.concurrent.Future com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "CoreProgressManager.java" + }, + "line": 476 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", + "filename": "CoreProgressManager.java" + }, + "line": 453 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.run(com.intellij.openapi.progress.Task)", + "filename": "CoreProgressManager.java" + }, + "line": 436 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startInBackgroundWithVisibleOrInvisibleProgress(kotlin.jvm.functions.Function1)", + "filename": "MergingQueueGuiExecutor.kt" + }, + "line": 205 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess$lambda$6(com.intellij.openapi.project.MergingQueueGuiExecutor, kotlin.jvm.functions.Function0, com.intellij.openapi.project.SingleTaskExecutor$AutoclosableProgressive)", + "filename": "MergingQueueGuiExecutor.kt" + }, + "line": 153 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.project.SingleTaskExecutor.tryStartProcess(java.util.function.Consumer)", + "filename": "SingleTaskExecutor.kt" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess(kotlin.jvm.functions.Function0)", + "filename": "MergingQueueGuiExecutor.kt" + }, + "line": 148 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher.launch()", + "filename": "DumbServiceImpl.kt" + }, + "line": 116 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$queueTaskOnEdt$1.invokeSuspend(java.lang.Object)", + "filename": "DumbServiceImpl.kt" + }, + "line": 433 + } + ], + "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": "0x33", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", + "filename": "DispatchedRunnable.kt" + }, + "line": 44 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 236 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 25 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", + "filename": "TransactionGuardImpl.java" + }, + "line": 218 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x67", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.AsyncFileListener$ChangeApplier com.intellij.workspaceModel.ide.impl.WorkspaceModelRootWatcher.prepareChange(java.util.List)", + "filename": "WorkspaceModelRootWatcher.kt" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport.lambda$runAsyncListeners$0(java.util.List, com.intellij.openapi.vfs.AsyncFileListener, java.util.List)", + "filename": "AsyncEventSupport.java" + }, + "line": 90 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 258 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 258 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 853 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7c", + "lines": [ + { + "function": { + "name": "java.util.List com.intellij.openapi.vfs.newvfs.AsyncEventSupport.runAsyncListeners(java.util.List)", + "filename": "AsyncEventSupport.java" + }, + "line": 90 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1.before(java.util.List)", + "filename": "AsyncEventSupport.java" + }, + "line": 54 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e27444a4000.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec400.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 768 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 708 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x66", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 533 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6a", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.messages.impl.ToDirectChildrenMessagePublisher.publish$intellij_platform_core(java.lang.reflect.Method, java.lang.Object[], com.intellij.util.messages.impl.MessageQueue)", + "filename": "CompositeMessageBus.kt" + }, + "line": 281 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 481 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy156.before(java.util.List)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$fireBeforeEvents$20(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", + "filename": "PersistentFSImpl.java" + }, + "line": 1483 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", + "filename": "PersistentFSImpl.java" + }, + "line": 1107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x24", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.fireBeforeEvents(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", + "filename": "PersistentFSImpl.java" + }, + "line": 1482 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$processEvent$11(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", + "filename": "PersistentFSImpl.java" + }, + "line": 1088 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", + "filename": "PersistentFSImpl.java" + }, + "line": 1107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x63", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.processEvent(com.intellij.openapi.vfs.newvfs.events.VFileEvent)", + "filename": "PersistentFSImpl.java" + }, + "line": 1087 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.deleteFile(java.lang.Object, com.intellij.openapi.vfs.VirtualFile)", + "filename": "PersistentFSImpl.java" + }, + "line": 762 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.vfs.newvfs.impl.VirtualFileSystemEntry.delete(java.lang.Object)", + "filename": "VirtualFileSystemEntry.java" + }, + "line": 302 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x46", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.PsiFileImplUtil.doDelete(com.intellij.psi.PsiFile)", + "filename": "PsiFileImplUtil.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.PsiBinaryFileImpl.delete()", + "filename": "PsiBinaryFileImpl.java" + }, + "line": 209 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.lambda$doDeleteFiles$5(com.intellij.ide.util.DeleteHandler$LocalFilesDeleteTask, com.intellij.openapi.project.Project)", + "filename": "DeleteHandler.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 389 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 896 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xcc", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.doDeleteFiles(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 332 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x46", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$0(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 225 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.fileEditor.impl.NonProjectFileWritingAccessProvider.disableChecksDuring(java.lang.Runnable)", + "filename": "NonProjectFileWritingAccessProvider.java" + }, + "line": 172 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$1(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdd", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreCommandProcessor.java" + }, + "line": 226 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreCommandProcessor.java" + }, + "line": 178 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreCommandProcessor.java" + }, + "line": 168 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object)", + "filename": "CoreCommandProcessor.java" + }, + "line": 154 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.deleteInCommand(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", + "filename": "DeleteHandler.java" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15a", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project, boolean)", + "filename": "DeleteHandler.java" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project)", + "filename": "DeleteHandler.java" + }, + "line": 124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.projectView.impl.ProjectViewDeleteElementProvider.deleteElement(com.intellij.openapi.actionSystem.DataContext)", + "filename": "ProjectViewDeleteElementProvider.java" + }, + "line": 60 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.actions.DeleteAction.actionPerformed(com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "DeleteAction.java" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.util.function.Consumer)", + "filename": "ActionUtil.kt" + }, + "line": 374 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x28", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.ActionProcessor.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "ActionProcessor.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$actionProcessor$1.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 499 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 850 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$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": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 850 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1ca", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", + "filename": "ActionManagerImpl.kt" + }, + "line": 1173 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareWithCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", + "filename": "ActionUtil.kt" + }, + "line": 396 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 848 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x185", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 577 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 512 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(javax.swing.KeyStroke)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x146", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState()", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 444 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c9", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(java.awt.event.KeyEvent)", + "filename": "IdeKeyEventDispatcher.kt" + }, + "line": 306 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchKeyEvent(java.awt.event.KeyEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 606 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$22(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 565 + } + ], + "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": "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": "0x130", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 565 + } + ], + "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": "0x3f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 117 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x40f84", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x40f84" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x46148", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x46148" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x2b478", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x2b478" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x737aa", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x737aa" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x74e94", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x74e94" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x78b39", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x78b39" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x632d6", + "lines": [ + { + "function": { + "name": "libX11.so.6.4.0 0x632d6" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x19000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + }, + { + "address": "0x3f999", + "lines": [ + { + "function": { + "name": "libawt_xawt.so 0x3f999" + } + } + ], + "mapping": { + "start": "0x13000", + "limit": "0x5d000", + "offset": "0x13000", + "filename": "libawt_xawt.so", + "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.String sun.awt.X11InputMethodBase.resetXIC()", + "filename": "X11InputMethodBase.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "java.lang.String sun.awt.X11InputMethodBase.invokeResetXIC()", + "filename": "X11InputMethodBase.java" + }, + "line": 802 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XInputMethod.endComposition()", + "filename": "XInputMethod.java" + }, + "line": 135 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XInputMethod.dispatchEvent(java.awt.AWTEvent)", + "filename": "XInputMethod.java" + }, + "line": 115 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa7", + "lines": [ + { + "function": { + "name": "void sun.awt.im.InputContext.dispatchEvent(java.awt.AWTEvent)", + "filename": "InputContext.java" + }, + "line": 263 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "void sun.awt.im.InputMethodContext.dispatchEvent(java.awt.AWTEvent)", + "filename": "InputMethodContext.java" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16d", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4974 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2324 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a1", + "lines": [ + { + "function": { + "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4963 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x90", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", + "filename": "Container.java" + }, + "line": 4574 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 4518 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Container.java" + }, + "line": 2310 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", + "filename": "Window.java" + }, + "line": 2810 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", + "filename": "Component.java" + }, + "line": 4860 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 783 + } + ], + "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": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 755 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$5.run()", + "filename": "EventQueue.java" + }, + "line": 753 + } + ], + "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": "0x49", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 752 + } + ], + "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": "0x43", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 621 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "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": "0x115", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 564 + } + ], + "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": "0x3f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 117 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "int java.util.Arrays.binarySearch0(int[], int, int, int)", + "filename": "Arrays.java" + }, + "line": 1717 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "int java.util.Arrays.binarySearch(int[], int)", + "filename": "Arrays.java" + }, + "line": 1660 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x55", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.impl.LineSet.findLineIndex(int)", + "filename": "LineSet.java" + }, + "line": 169 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.impl.DocumentImpl.getLineNumber(int)", + "filename": "DocumentImpl.java" + }, + "line": 1034 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x53", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.impl.RangeHighlighterImpl.getAffectedAreaStartOffset()", + "filename": "RangeHighlighterImpl.java" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "int com.intellij.openapi.editor.ex.RangeHighlighterEx$$Lambda+\u003chidden\u003e.applyAsInt(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "int java.util.Comparator.lambda$comparingInt$7b0bb60$1(java.util.function.ToIntFunction, java.lang.Object, java.lang.Object)", + "filename": "Comparator.java" + }, + "line": 494 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "int java.util.Comparator$$Lambda+\u003chidden\u003e.compare(java.lang.Object, java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.ex.MarkupIterator$2.choose()", + "filename": "MarkupIterator.java" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.editor.ex.MarkupIterator$2.peek()", + "filename": "MarkupIterator.java" + }, + "line": 82 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.peek()", + "filename": "FilteringMarkupIterator.java" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.FilteringMarkupIterator.skipUnrelated()", + "filename": "FilteringMarkupIterator.java" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.next()", + "filename": "FilteringMarkupIterator.java" + }, + "line": 40 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processRangeHighlighters(int, int, com.intellij.openapi.editor.impl.EditorGutterComponentImpl$RangeHighlighterProcessor)", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 877 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "it.unimi.dsi.fastutil.ints.Int2ObjectMap com.intellij.openapi.editor.impl.EditorGutterComponentImpl.buildGutterRenderersCache()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "it.unimi.dsi.fastutil.objects.ObjectIterable com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processGutterRenderers()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 1199 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x96", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.calcLineMarkerAreaWidth(boolean)", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 1129 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize(boolean, boolean)", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 954 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 944 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$1.exitDumbMode()", + "filename": "EditorGutterComponentImpl.java" + }, + "line": 234 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 765 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 712 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 420 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 487 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy225.handle(com.intellij.execution.services.ServiceEventListener$ServiceEvent)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl.updateDashboard(boolean)", + "filename": "RunDashboardManagerImpl.java" + }, + "line": 464 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl$8.exitDumbMode()", + "filename": "RunDashboardManagerImpl.java" + }, + "line": 229 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 765 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 712 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 420 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 493 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy139.beforePsiChanged(boolean)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.PsiManagerImpl.beforeChange(boolean)", + "filename": "PsiManagerImpl.java" + }, + "line": 434 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.PsiManagerImpl.beforePropertyChange(com.intellij.psi.impl.PsiTreeChangeEventImpl)", + "filename": "PsiManagerImpl.java" + }, + "line": 252 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$3(boolean)", + "filename": "FileManagerImpl.java" + }, + "line": 305 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 389 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 896 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$4(boolean)", + "filename": "FileManagerImpl.java" + }, + "line": 302 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.DebugUtil.performPsiModification(java.lang.String, com.intellij.util.ThrowableRunnable)", + "filename": "DebugUtil.java" + }, + "line": 534 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.processFileTypesChanged(boolean)", + "filename": "FileManagerImpl.java" + }, + "line": 300 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$1.exitDumbMode()", + "filename": "FileManagerImpl.java" + }, + "line": 81 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$DMH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "LambdaForm$MH" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", + "filename": "MessageBusImpl.kt" + }, + "line": 765 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 712 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MessageBusImpl.kt" + }, + "line": 451 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x97", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 430 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", + "filename": "MessageBusImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", + "filename": "MessageBusImpl.kt" + }, + "line": 493 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void jdk.proxy2.$Proxy75.exitDumbMode()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12$lambda$11(com.intellij.openapi.project.DumbServiceImpl)", + "filename": "DumbServiceImpl.kt" + }, + "line": 359 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$$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": "0x6", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12(com.intellij.openapi.project.DumbServiceImpl)", + "filename": "DumbServiceImpl.kt" + }, + "line": 359 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.runCatchingIgnorePCE(java.lang.Runnable)", + "filename": "DumbServiceImpl.kt" + }, + "line": 753 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.access$runCatchingIgnorePCE(com.intellij.openapi.project.DumbServiceImpl$Companion, java.lang.Runnable)", + "filename": "DumbServiceImpl.kt" + }, + "line": 740 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent()", + "filename": "DumbServiceImpl.kt" + }, + "line": 359 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6b", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.decrementDumbCounter()", + "filename": "DumbServiceImpl.kt" + }, + "line": 337 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.project.DumbServiceImpl.access$decrementDumbCounter(com.intellij.openapi.project.DumbServiceImpl)", + "filename": "DumbServiceImpl.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend$lambda$0(com.intellij.openapi.project.DumbServiceImpl, com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher)", + "filename": "DumbServiceImpl.kt" + }, + "line": 103 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$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": "0x3a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend(java.lang.Object)", + "filename": "DumbServiceImpl.kt" + }, + "line": 101 + } + ], + "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": "0x33", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", + "filename": "DispatchedRunnable.kt" + }, + "line": 44 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 236 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 25 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", + "filename": "TransactionGuardImpl.java" + }, + "line": 218 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)", + "filename": "JobSupport.kt" + }, + "line": 999 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x58", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 292 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2d", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 829 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", + "filename": "AbstractCoroutine.kt" + }, + "line": 97 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 46 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x4801eb", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4801eb" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x41771a", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x41771a" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4197c7", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4197c7" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x419604", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x419604" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x418c32", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x418c32" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4128c4", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4128c4" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x471c2c", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471c2c" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x471444", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471444" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb04536", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb04536" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb07b07", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb07b07" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb070b0", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb070b0" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb05324", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb05324" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb227bb", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb227bb" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb2261e", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb2261e" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb23b5b", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb23b5b" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x47f4c0", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x34de0a", + "lines": [ + { + "function": { + "name": "htab_map_get_next_key" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3100d0", + "lines": [ + { + "function": { + "name": "map_get_next_key" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x316752", + "lines": [ + { + "function": { + "name": "__sys_bpf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x316e99", + "lines": [ + { + "function": { + "name": "__x64_sys_bpf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6e57", + "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": "0x48414d", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x48414d" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4d282c", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d282c" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4d2885", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d2885" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x4d33ed", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d33ed" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x6241b3", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x6241b3" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x69a5ec", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a5ec" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x69a33c", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a33c" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xbc14ac", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc14ac" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xbc25a4", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc25a4" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0xb1f974", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb1f974" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + }, + { + "address": "0x47f4c0", + "lines": [ + { + "function": { + "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0xc32000", + "offset": "0x2000", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xcd2f48", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcd2f48" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc53067", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc53067" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc562d7", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc562d7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6720b1", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6720b1" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x676529", + "lines": [ + { + "function": { + "name": "libjvm.so 0x676529" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xd5788c", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd5788c" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd549a8", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd549a8" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x673fb9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x673fb9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675f01", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675f01" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xca29b1", + "lines": [ + { + "function": { + "name": "libjvm.so 0xca29b1" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xca4241", + "lines": [ + { + "function": { + "name": "libjvm.so 0xca4241" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5dfc34", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5dfc34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x88e8b5", + "lines": [ + { + "function": { + "name": "libjvm.so 0x88e8b5" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xb965c3", + "lines": [ + { + "function": { + "name": "libjvm.so 0xb965c3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675d45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xf8e0c6", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf8e0c6" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf8cb60", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf8cb60" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x752b0b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x752b0b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf8ea8a", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf8ea8a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x666ddb", + "lines": [ + { + "function": { + "name": "libjvm.so 0x666ddb" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6673d8", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6673d8" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc63596", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc63596" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc6de6d", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc6de6d" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd56aca", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd56aca" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xc647db", + "lines": [ + { + "function": { + "name": "libjvm.so 0xc647db" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x890bbe", + "lines": [ + { + "function": { + "name": "libjvm.so 0x890bbe" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4b7167", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4b7167" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4b82d5", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4b82d5" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x89f571", + "lines": [ + { + "function": { + "name": "libjvm.so 0x89f571" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd45a4e", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd45a4e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd46502", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd46502" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675d45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xd5c0c2", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd5c0c2" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5c9e9a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5c9e9a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x672338", + "lines": [ + { + "function": { + "name": "libjvm.so 0x672338" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x676529", + "lines": [ + { + "function": { + "name": "libjvm.so 0x676529" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xf991cc", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf991cc" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf99930", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf99930" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf99ea6", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf99ea6" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf9a2fb", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf9a2fb" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x892f2e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x892f2e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d0f", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d0f" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59e148" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x765d47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd34374" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd347b4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd36f34" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59c77a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "libjvm.so 0x675d45" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x59b62e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xad7b4", + "lines": [ + { + "function": { + "name": "libc.so.6 0xad7b4" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xcfc1af", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcfc1af" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x432d9e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x432d9e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcf350a", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcf350a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x63fbf0", + "lines": [ + { + "function": { + "name": "libjvm.so 0x63fbf0" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6856e1", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6856e1" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcc7df4", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcc7df4" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcc84e2", + "lines": [ + { + "function": { + "name": "libjvm.so 0xcc84e2" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5d2745", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5d2745" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4eb59b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4eb59b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecd89", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecd89" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6c4a6e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6c4a6e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6c5c47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x6c5c47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x50e19d", + "lines": [ + { + "function": { + "name": "libjvm.so 0x50e19d" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c370", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c370" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x528811", + "lines": [ + { + "function": { + "name": "libjvm.so 0x528811" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c840", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c840" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c53e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c53e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x51c70a", + "lines": [ + { + "function": { + "name": "libjvm.so 0x51c70a" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec547", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec547" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec9e8", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec9e8" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecc19", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecc19" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x559925", + "lines": [ + { + "function": { + "name": "libjvm.so 0x559925" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5625ba", + "lines": [ + { + "function": { + "name": "libjvm.so 0x5625ba" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x562e27", + "lines": [ + { + "function": { + "name": "libjvm.so 0x562e27" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x564b15", + "lines": [ + { + "function": { + "name": "libjvm.so 0x564b15" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ebfec", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ebfec" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec90f", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec90f" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecc19", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecc19" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x55be84", + "lines": [ + { + "function": { + "name": "libjvm.so 0x55be84" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x564a47", + "lines": [ + { + "function": { + "name": "libjvm.so 0x564a47" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ebfec", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ebfec" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ec90f", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ec90f" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecc19", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecc19" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4ecfe7" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x4edd4b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67c233" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67f1a3" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x67fc1b", + "lines": [ + { + "function": { + "name": "libjvm.so 0x67fc1b" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9f705e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9f705e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()", + "filename": "AccessController.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.security.AccessControlContext java.security.AccessController.getContext()", + "filename": "AccessController.java" + }, + "line": 1006 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)", + "filename": "AWTEvent.java" + }, + "line": 120 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)", + "filename": "InvocationEvent.java" + }, + "line": 291 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)", + "filename": "InvocationEvent.java" + }, + "line": 177 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void sun.awt.GlobalCursorManager.updateCursorLater(java.awt.Component)", + "filename": "GlobalCursorManager.java" + }, + "line": 120 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XGlobalCursorManager.nativeUpdateCursor(java.awt.Component)", + "filename": "XGlobalCursorManager.java" + }, + "line": 60 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xbc", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XWindow.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XWindow.java" + }, + "line": 1104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XComponentPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XComponentPeer.java" + }, + "line": 74 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x88", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XWindowPeer.java" + }, + "line": 2364 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf6", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", + "filename": "XBaseWindow.java" + }, + "line": 1220 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x82", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", + "filename": "XWindowPeer.java" + }, + "line": 2360 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf6", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", + "filename": "XBaseWindow.java" + }, + "line": 1220 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x54", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)", + "filename": "XBaseWindow.java" + }, + "line": 1178 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)", + "filename": "XToolkit.java" + }, + "line": 917 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x218", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XToolkit.run(boolean)", + "filename": "XToolkit.java" + }, + "line": 1064 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void sun.awt.X11.XToolkit.run()", + "filename": "XToolkit.java" + }, + "line": 946 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x73", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.util.text.StringUtilRt.equal(java.lang.CharSequence, java.lang.CharSequence, boolean)", + "filename": "StringUtilRt.java" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.CharSequence, java.lang.CharSequence)", + "filename": "HashingStrategy.java" + }, + "line": 52 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.Object, java.lang.Object)", + "filename": "HashingStrategy.java" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object, com.intellij.util.containers.HashingStrategy)", + "filename": "ConcurrentHashMap.java" + }, + "line": 6253 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object)", + "filename": "ConcurrentHashMap.java" + }, + "line": 6249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.concurrency.ConcurrentHashMap.get(java.lang.Object)", + "filename": "ConcurrentHashMap.java" + }, + "line": 917 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeAssocTable.findAssociatedFileType(java.lang.CharSequence)", + "filename": "FileTypeAssocTable.java" + }, + "line": 156 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$FileTypeWithDescriptor com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.lambda$getFileTypeByFileName$12(java.lang.CharSequence)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 720 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.openapi.util.ThrowableComputable)", + "filename": "ConcurrencyUtil.java" + }, + "line": 246 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.withReadLock(com.intellij.openapi.util.ThrowableComputable)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 1816 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2d", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.CharSequence)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 720 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.String)", + "filename": "FileTypeManagerImpl.java" + }, + "line": 711 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3d", + "lines": [ + { + "function": { + "name": "boolean com.goide.vgo.project.VgoLibraryRootsProvider$VgoDependenciesLibrary.shouldExclude(boolean, java.lang.String, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier)", + "filename": "VgoLibraryRootsProvider.java" + }, + "line": 114 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "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)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition.lambda$transformToCondition$3(java.util.Collection, com.intellij.openapi.vfs.VirtualFile)", + "filename": "SyntheticLibrary.java" + }, + "line": 236 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition$$Lambda+\u003chidden\u003e.value(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "boolean com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor.registerFileSets$lambda$2(com.intellij.openapi.util.Condition, com.intellij.openapi.vfs.VirtualFile)", + "filename": "VgoDependencyWorkspaceFileIndexContributor.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "boolean com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.isExcluded(com.intellij.openapi.vfs.VirtualFile)", + "filename": "workspaceFileSets.kt" + }, + "line": 328 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "int com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", + "filename": "workspaceFileSets.kt" + }, + "line": 338 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x39", + "lines": [ + { + "function": { + "name": "int com.intellij.workspaceModel.core.fileIndex.impl.MultipleStoredWorkspaceFileSets.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", + "filename": "workspaceFileSets.kt" + }, + "line": 212 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf4", + "lines": [ + { + "function": { + "name": "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)", + "filename": "WorkspaceFileIndexDataImpl.kt" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "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)", + "filename": "WorkspaceFileIndexImpl.kt" + }, + "line": 267 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.roots.impl.ProjectFileIndexImpl.isExcluded(com.intellij.openapi.vfs.VirtualFile)", + "filename": "ProjectFileIndexImpl.java" + }, + "line": 67 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile$lambda$2(com.intellij.openapi.roots.ProjectFileIndex, com.intellij.openapi.vfs.VirtualFile)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$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.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "actions.kt" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$4(com.intellij.openapi.util.Computable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 260 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 314 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 260 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)", + "filename": "ApplicationImpl.java" + }, + "line": 858 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)", + "filename": "actions.kt" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x75", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots$lambda$0(com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean, com.intellij.openapi.vfs.VirtualFile)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter.lambda$and$0(com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.vfs.VirtualFile)", + "filename": "VirtualFileFilter.java" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore$1.visitFileEx(com.intellij.openapi.vfs.VirtualFile)", + "filename": "VfsUtilCore.java" + }, + "line": 287 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 303 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13c", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", + "filename": "VfsUtilCore.java" + }, + "line": 335 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "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[])", + "filename": "VfsUtilCore.java" + }, + "line": 284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.vfs.VfsUtilCore.iterateChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.roots.ContentIterator)", + "filename": "VfsUtilCore.java" + }, + "line": 277 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9d", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "lines": [ + { + "function": { + "name": "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)", + "filename": "IndexableFilesIterationMethods.kt" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.indexing.roots.SourceRootHolderIteratorBase.iterateFiles(com.intellij.openapi.project.Project, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter)", + "filename": "SourceRootHolderIteratorBase.java" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d", + "lines": [ + { + "function": { + "name": "void com.intellij.util.indexing.FileBasedIndexEx.iterateIndexableFiles(com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.project.Project, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "FileBasedIndexEx.java" + }, + "line": 530 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1f", + "lines": [ + { + "function": { + "name": "com.goide.stubs.index.GoIdFilter com.goide.stubs.index.GoIdFilter.lambda$createIdFilter$3(com.intellij.openapi.project.Project, com.intellij.openapi.util.Condition)", + "filename": "GoIdFilter.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.goide.stubs.index.GoIdFilter$$Lambda+\u003chidden\u003e.call()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.FutureTask.run()", + "filename": "FutureTask.java" + }, + "line": 317 + } + ], + "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": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 227 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 215 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", + "filename": "ThreadPoolExecutor.java" + }, + "line": 1144 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", + "filename": "ThreadPoolExecutor.java" + }, + "line": 642 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 735 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "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": "0xf", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "boolean kotlin.text.StringsKt__StringsKt.contains(java.lang.CharSequence, char, boolean)", + "filename": "Strings.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "boolean kotlin.text.StringsKt__StringsKt.contains$default(java.lang.CharSequence, char, boolean, int, java.lang.Object)", + "filename": "Strings.kt" + }, + "line": 1170 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "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)", + "filename": "GitHubTableMarkerProvider.kt" + }, + "line": 20 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.util.List org.intellij.markdown.parser.MarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", + "filename": "MarkerProcessor.kt" + }, + "line": 47 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "java.util.List org.intellij.markdown.flavours.commonmark.CommonMarkMarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", + "filename": "CommonMarkMarkerProcessor.kt" + }, + "line": 79 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5a", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.parser.LookaheadText$Position org.intellij.markdown.parser.MarkerProcessor.processPosition(org.intellij.markdown.parser.LookaheadText$Position)", + "filename": "MarkerProcessor.kt" + }, + "line": 75 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x52", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.doParse(org.intellij.markdown.IElementType, java.lang.String, boolean)", + "filename": "MarkdownParser.kt" + }, + "line": 67 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.parse(org.intellij.markdown.IElementType, java.lang.String, boolean)", + "filename": "MarkdownParser.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.performParsing(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + }, + "line": 42 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parse(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + }, + "line": 34 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager$Companion.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + }, + "line": 71 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", + "filename": "MarkdownParserManager.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4a", + "lines": [ + { + "function": { + "name": "void org.intellij.plugins.markdown.lang.lexer.MarkdownToplevelLexer.start(java.lang.CharSequence, int, int, int)", + "filename": "MarkdownToplevelLexer.java" + }, + "line": 52 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.lexer.DelegateLexer.start(java.lang.CharSequence, int, int, int)", + "filename": "DelegateLexer.java" + }, + "line": 25 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void com.intellij.lexer.LayeredLexer.start(java.lang.CharSequence, int, int, int)", + "filename": "LayeredLexer.java" + }, + "line": 75 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.start(java.lang.CharSequence, int, int, int)", + "filename": "ValidatingLexerWrapper.java" + }, + "line": 38 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(java.lang.CharSequence)", + "filename": "LexerEditorHighlighter.java" + }, + "line": 432 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(java.lang.CharSequence)", + "filename": "LexerEditorHighlighter.java" + }, + "line": 413 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x42", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.createHighlighter(boolean)", + "filename": "EditorHighlighterUpdater.kt" + }, + "line": 154 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.updateHighlighters$lambda$0(com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater)", + "filename": "EditorHighlighterUpdater.kt" + }, + "line": 139 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater$$Lambda+\u003chidden\u003e.call()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 889 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 618 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 581 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$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": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$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": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 140 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)", + "filename": "ProgressManager.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.ProgressManager$$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.progress.impl.CoreProgressManager.lambda$runProcess$1(java.lang.Runnable, io.opentelemetry.api.trace.Span)", + "filename": "CoreProgressManager.java" + }, + "line": 223 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(io.opentelemetry.api.trace.Span, kotlin.jvm.functions.Function1)", + "filename": "trace.kt" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x44", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)", + "filename": "CoreProgressManager.java" + }, + "line": 222 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager$$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.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(java.lang.Runnable)", + "filename": "CoreProgressManager.java" + }, + "line": 674 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd8", + "lines": [ + { + "function": { + "name": "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)", + "filename": "CoreProgressManager.java" + }, + "line": 749 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "CoreProgressManager.java" + }, + "line": 705 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "CoreProgressManager.java" + }, + "line": 673 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressManagerImpl.java" + }, + "line": 79 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "CoreProgressManager.java" + }, + "line": 203 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressManager.java" + }, + "line": 98 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 137 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 95 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x92", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 581 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x28", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 480 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)", + "filename": "NonBlockingReadActionImpl.java" + }, + "line": 495 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 249 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", + "filename": "BoundedTaskExecutor.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 227 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", + "filename": "BoundedTaskExecutor.java" + }, + "line": 215 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", + "filename": "ThreadPoolExecutor.java" + }, + "line": 1144 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", + "filename": "ThreadPoolExecutor.java" + }, + "line": 642 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 735 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "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": "0xf", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", + "filename": "Executors.java" + }, + "line": 732 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "libjvm.so 0x914b94" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9164da" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "libjvm.so 0x9e65b9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "libjvm.so 0x92b50e" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "libjvm.so 0xf7b717" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "libjvm.so 0xd075c9" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x2a3000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "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": [ + 100000000 + ] + }, + { + "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": [ + 100000000 + ] + }, + { + "locations": [ + { + "address": "0x12495b0", + "lines": [ + { + "function": { + "name": "_raw_spin_unlock_irqrestore" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2066db", + "lines": [ + { + "function": { + "name": "hrtimer_start_range_ns" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124808f", + "lines": [ + { + "function": { + "name": "schedule_hrtimeout_range_clock" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1248152", + "lines": [ + { + "function": { + "name": "schedule_hrtimeout_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1247d14", + "lines": [ + { + "function": { + "name": "usleep_range_state" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16054b", + "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": [ + 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": "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": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x11e6fe", + "lines": [ + { + "function": { + "name": "set_placement_list" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1202b1", + "lines": [ + { + "function": { + "name": "nouveau_bo_placement_set" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228ac", + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x1d1d5", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x1d1d5" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14c9cf", + "lines": [ + { + "function": { + "name": "Xorg 0x14c9cf" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x275a2", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x275a2" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x2746c" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "Xorg 0x140e6f" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x100ef", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x100ef" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14bb06", + "lines": [ + { + "function": { + "name": "Xorg 0x14bb06" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x13f976", + "lines": [ + { + "function": { + "name": "Xorg 0x13f976" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "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": "0x218ff0", + "lines": [ + { + "function": { + "name": "do_setitimer" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2197aa", + "lines": [ + { + "function": { + "name": "__x64_sys_setitimer" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6648", + "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": "0xe29da", + "lines": [ + { + "function": { + "name": "libc.so.6 0xe29da" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x1e4a68", + "lines": [ + { + "function": { + "name": "Xorg 0x1e4a68" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x1db31e", + "lines": [ + { + "function": { + "name": "Xorg 0x1db31e" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x627e9", + "lines": [ + { + "function": { + "name": "Xorg 0x627e9" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x28414", + "lines": [ + { + "function": { + "name": "libc.so.6 0x28414" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x274ff", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x274ff" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x2746c" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "Xorg 0x140e6f" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "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": "0x124dec", + "lines": [ + { + "function": { + "name": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x17ba6", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x17ba6" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x18bf8", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x18bf8" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14b73c", + "lines": [ + { + "function": { + "name": "Xorg 0x14b73c" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x141792", + "lines": [ + { + "function": { + "name": "Xorg 0x141792" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x51ee" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa7103a" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x311bf7" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x100ef", + "lines": [ + { + "function": { + "name": "libglamoregl.so 0x100ef" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14bb06", + "lines": [ + { + "function": { + "name": "Xorg 0x14bb06" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x13f976", + "lines": [ + { + "function": { + "name": "Xorg 0x13f976" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "Xorg 0x62ab3" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "Xorg 0x66e51" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "Xorg 0x4f394" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x40000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1243691", + "lines": [ + { + "function": { + "name": "mutex_lock" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d5a9", + "lines": [ + { + "function": { + "name": "gf100_vmm_invalidate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d7ce", + "lines": [ + { + "function": { + "name": "gf100_vmm_flush" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x85937", + "lines": [ + { + "function": { + "name": "nvkm_vmm_iter.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8642e", + "lines": [ + { + "function": { + "name": "nvkm_vmm_ptes_get_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x866a4", + "lines": [ + { + "function": { + "name": "nvkm_vmm_map_locked" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x885dd", + "lines": [ + { + "function": { + "name": "nvkm_vmm_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x837d6", + "lines": [ + { + "function": { + "name": "nvkm_mem_map_dma" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9107c", + "lines": [ + { + "function": { + "name": "nvkm_uvmm_mthd_map.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x91e26", + "lines": [ + { + "function": { + "name": "nvkm_uvmm_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": "0x4a1e", + "lines": [ + { + "function": { + "name": "nvif_vmm_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124f2b", + "lines": [ + { + "function": { + "name": "nouveau_mem_map" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x126a83", + "lines": [ + { + "function": { + "name": "nouveau_vma_new" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1231a4", + "lines": [ + { + "function": { + "name": "nouveau_gem_object_open" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca6c96", + "lines": [ + { + "function": { + "name": "drm_gem_handle_create_tail" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca6da4", + "lines": [ + { + "function": { + "name": "drm_gem_handle_create" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123d0c", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_new" + } + } + ], + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x433a", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x433a" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa0ecf1", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa0ecf1" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0xa593e4", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa593e4" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x5120", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5120" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa59b08", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa59b08" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x3baaa1", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x3baaa1" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x171ff", + "lines": [ + { + "function": { + "name": "libkwinglutils.so.5.27.11 0x171ff" + } + } + ], + "mapping": { + "start": "0xa000", + "limit": "0x1d000", + "offset": "0xa000", + "filename": "libkwinglutils.so.5.27.11", + "build_id": "b79e87745522e8a9559a65a18dc70d96dafcb154" + } + }, + { + "address": "0x270304", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x270304" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x284412", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x284412" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x275ea0", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x275ea0" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1be5b7", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1be5b7" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1c3052", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1c3052" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1c33bc", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1c33bc" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x312e15", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x312e15" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x172323", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x172323" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x1c912e", + "lines": [ + { + "function": { + "name": "libkwin.so.5.27.11 0x1c912e" + } + } + ], + "mapping": { + "start": "0x158000", + "limit": "0x496000", + "offset": "0x158000", + "filename": "libkwin.so.5.27.11", + "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" + } + }, + { + "address": "0x312e15", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x312e15" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x31710c", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x31710c" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x30624a", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x30624a" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x16bd44", + "lines": [ + { + "function": { + "name": "libQt5Widgets.so.5.15.13 0x16bd44" + } + } + ], + "mapping": { + "start": "0x14e000", + "limit": "0x545000", + "offset": "0x14e000", + "filename": "libQt5Widgets.so.5.15.13", + "build_id": "bfe07edc9e95f586e665ab542d433386d87d6409" + } + }, + { + "address": "0x2d8117", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x2d8117" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x3345aa", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x3345aa" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x334ed8", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x334ed8" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x5d5b4", + "lines": [ + { + "function": { + "name": "libglib-2.0.so.0.8000.0 0x5d5b4" + } + } + ], + "mapping": { + "start": "0x1e000", + "limit": "0xbe000", + "offset": "0x1e000", + "filename": "libglib-2.0.so.0.8000.0", + "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" + } + }, + { + "address": "0xbc716", + "lines": [ + { + "function": { + "name": "libglib-2.0.so.0.8000.0 0xbc716" + } + } + ], + "mapping": { + "start": "0x1e000", + "limit": "0xbe000", + "offset": "0x1e000", + "filename": "libglib-2.0.so.0.8000.0", + "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" + } + }, + { + "address": "0x5ca52", + "lines": [ + { + "function": { + "name": "libglib-2.0.so.0.8000.0 0x5ca52" + } + } + ], + "mapping": { + "start": "0x1e000", + "limit": "0xbe000", + "offset": "0x1e000", + "filename": "libglib-2.0.so.0.8000.0", + "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" + } + }, + { + "address": "0x335278", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x335278" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x2d6a7a", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x2d6a7a" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x2df3e7", + "lines": [ + { + "function": { + "name": "libQt5Core.so.5.15.13 0x2df3e7" + } + } + ], + "mapping": { + "start": "0x8e000", + "limit": "0x3c4000", + "offset": "0x8e000", + "filename": "libQt5Core.so.5.15.13", + "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" + } + }, + { + "address": "0x47ba0", + "lines": [ + { + "function": { + "name": "kwin_x11 0x47ba0" + } + } + ], + "mapping": { + "start": "0x3e000", + "limit": "0xef000", + "offset": "0x3e000", + "filename": "kwin_x11", + "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x490e4", + "lines": [ + { + "function": { + "name": "kwin_x11 0x490e4" + } + } + ], + "mapping": { + "start": "0x3e000", + "limit": "0xef000", + "offset": "0x3e000", + "filename": "kwin_x11", + "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x225dd3", + "lines": [ + { + "function": { + "name": "futex_wake" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x22291d", + "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": "0x98fc6", + "lines": [ + { + "function": { + "name": "libc.so.6 0x98fc6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xa1ac1", + "lines": [ + { + "function": { + "name": "libc.so.6 0xa1ac1" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x6a2a5", + "lines": [ + { + "function": { + "name": "firefox-bin 0x6a2a5" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x22000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x2b07a52", + "lines": [ + { + "function": { + "name": "libxul.so 0x2b07a52" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5ecf8", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5ecf8" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5d620", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5d620" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a83c8d", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a83c8d" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x2994000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x197a1", + "lines": [ + { + "function": { + "name": "libnspr4.so 0x197a1" + } + } + ], + "mapping": { + "start": "0x12000", + "limit": "0x35000", + "offset": "0x11000", + "filename": "libnspr4.so", + "build_id": "caa869f624148b1ec093de72d7992781a5411334" + } + }, + { + "address": "0x5dd1f", + "lines": [ + { + "function": { + "name": "firefox-bin 0x5dd1f" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x22000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x40ca45", + "lines": [ + { + "function": { + "name": "vma_interval_tree_subtree_search" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x40d2b9", + "lines": [ + { + "function": { + "name": "vma_interval_tree_iter_first" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41ea8e", + "lines": [ + { + "function": { + "name": "unmap_mapping_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdc4", + "lines": [ + { + "function": { + "name": "ttm_bo_unmap_virtual" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1762", + "lines": [ + { + "function": { + "name": "ttm_bo_handle_move_mem" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2361", + "lines": [ + { + "function": { + "name": "ttm_bo_validate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2532", + "lines": [ + { + "function": { + "name": "ttm_bo_init_reserved" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1204a4", + "lines": [ + { + "function": { + "name": "nouveau_bo_init" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123b6c", + "lines": [ + { + "function": { + "name": "nouveau_gem_new" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123cbc", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_new" + } + } + ], + "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": "libc.so.6 0x124dec" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x28000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0x7aff" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "libdrm.so.2.4.0 0xb02f" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x5000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x433a", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x433a" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa0ecf1", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa0ecf1" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0xa593e4", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0xa593e4" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x5120", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5120" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x53ba" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "libdrm_nouveau.so.2.0.0 0x5a1b" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x2000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x9fb761", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x9fb761" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x3eeb41", + "lines": [ + { + "function": { + "name": "nouveau_dri.so 0x3eeb41" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x97000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + } + ], + "values": [ + 50000000 + ] + } + ], + "time_nanos": "1735810160954000000", + "duration_nanos": "1735810159954000000", + "period": "1000000000" +} \ No newline at end of file From 2c9ddc300fecb8c1c8b12396d7719c2147143af6 Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Thu, 2 Jan 2025 04:58:08 -0500 Subject: [PATCH 3/8] fix testdata1 --- pkg/og/convert/pprof/strprofile/profile.go | 12 +++++-- pkg/test/integration/ingest_otlp_test.go | 34 +++++++++++------- .../otel-ebpf-profiler-pyrosymbolized.pb.bin | Bin 0 -> 88532 bytes .../otel-ebpf-profiler-unsymbolized.json | 2 -- 4 files changed, 30 insertions(+), 18 deletions(-) create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin diff --git a/pkg/og/convert/pprof/strprofile/profile.go b/pkg/og/convert/pprof/strprofile/profile.go index 46dc106de8..9c421f9a34 100644 --- a/pkg/og/convert/pprof/strprofile/profile.go +++ b/pkg/og/convert/pprof/strprofile/profile.go @@ -11,6 +11,8 @@ import ( // Options controls what information is included in the stringified output type Options struct { NoPrettyPrint bool + NoDuration bool + NoTime bool } // Location represents a denormalized location @@ -67,9 +69,13 @@ type Profile struct { // Stringify converts a profile to a human-readable JSON representation func Stringify(p *profilev1.Profile, opts Options) (string, error) { sp := Profile{ - TimeNanos: fmt.Sprintf("%d", p.TimeNanos), - DurationNanos: fmt.Sprintf("%d", p.DurationNanos), - Period: fmt.Sprintf("%d", p.Period), + 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) } // Process sample types diff --git a/pkg/test/integration/ingest_otlp_test.go b/pkg/test/integration/ingest_otlp_test.go index 92889c9bf6..51bad9c3b7 100644 --- a/pkg/test/integration/ingest_otlp_test.go +++ b/pkg/test/integration/ingest_otlp_test.go @@ -2,16 +2,14 @@ package integration import ( "context" + 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" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "os" "strings" "testing" - "time" - - profilesv1 "github.com/grafana/pyroscope/api/otlp/collector/profiles/v1development" - "github.com/grafana/pyroscope/pkg/og/convert/pprof/strprofile" ) type otlpTestData struct { @@ -28,7 +26,7 @@ type expectedProfile struct { var otlpTestDatas = []otlpTestData{ { - name: "t1", + name: "unsymbolized profile from otel-ebpf-profiler", profilePath: "testdata/otel-ebpf-profiler-unsymbolized.pb.bin", expectedMetrics: []expectedProfile{ {"process_cpu:cpu:nanoseconds:cpu:nanoseconds", @@ -37,6 +35,16 @@ var otlpTestDatas = []otlpTestData{ }, }, }, + { + 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.json", + }, + }, + }, } func TestIngestOTLP(t *testing.T) { @@ -51,7 +59,7 @@ func TestIngestOTLP(t *testing.T) { profileBytes, err := os.ReadFile(td.profilePath) require.NoError(t, err) - var profile profilesv1.ExportProfilesServiceRequest + var profile = new(profilesv1.ExportProfilesServiceRequest) err = profile.Unmarshal(profileBytes) require.NoError(t, err) @@ -60,15 +68,11 @@ func TestIngestOTLP(t *testing.T) { sp.Scope.Attributes = append(sp.Scope.Attributes, commonv1.KeyValue{ Key: "test_run_no", Value: commonv1.AnyValue{Value: &commonv1.AnyValue_StringValue{StringValue: runNo}}, }) - for _, p := range sp.Profiles { - p.DurationNanos = (time.Second * 10).Nanoseconds() - p.TimeNanos = int64(time.Unix(10, 0).Nanosecond()) - } } } client := rb.OtelPushClient() - _, err = client.Export(context.Background(), &profile) + _, err = client.Export(context.Background(), profile) require.NoError(t, err) for _, metric := range td.expectedMetrics { @@ -89,15 +93,19 @@ func TestIngestOTLP(t *testing.T) { assert.NotEmpty(t, resp.Msg.Mapping) assert.NotEmpty(t, resp.Msg.Location) - actualStr, err := strprofile.Stringify(resp.Msg, strprofile.Options{}) + actualStr, err := strprofile.Stringify(resp.Msg, strprofile.Options{ + NoTime: true, + NoDuration: true, + }) - pprofDumpFileName := strings.ReplaceAll(metric.expectedJsonPath, ".json", ".pprof.pb.bin") + pprofDumpFileName := strings.ReplaceAll(metric.expectedJsonPath, ".json", ".pprof.pb.bin") // for debugging pprof, err := resp.Msg.MarshalVT() require.NoError(t, err) err = os.WriteFile(pprofDumpFileName, pprof, 0644) require.NoError(t, err) assert.JSONEq(t, string(expectedBytes), actualStr) + _ = os.WriteFile(metric.expectedJsonPath, []byte(actualStr), 0644) } }) diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin new file mode 100644 index 0000000000000000000000000000000000000000..41c8e60050e7bc3a29141fd5398954ae83f7c378 GIT binary patch literal 88532 zcmeF42Y?mTz5g>ackZ3L3OiylTv%Cl$rjYS z6pDZX78JWu?FAbuVpp(X?_KP@_sakCJ2UsP%Pz{~wY>i$hTq(CX6DS9Gr#jI-{0?? zZMgFyv*Aw-gBxPwI=Z@>THPT=gO+TtYvqYU%m!oh=v2dqhPb+--I?GG`9{Og@g1G* zt!>?1-lXlzxm>c<>FDg~n%LRl9MG^;Lt~fMIjObcHBIt5yIMQihv*GoYWQ+PyrZjW zyw}<8wGD|inE9q+Q*y|i7n%)U8gdIXVrjNMG)$aAGzvKb>;`wpX>&|kv)Hw-u~8A*Il>vEgCs?<_T}9 z9}8Z3>w&3q>B%oHx^$ZS`0TiI@0+e}{+e}=W`9Gq>v#M1(++>tKQ+`^sM(I3GQV<+ zCeNJl*o8sIziCa;ZB5Qu$7?5OCu%2Y>G<3CzxSMKe#lU3s_ys69D1@gpK}krvEuES z!4v1`_E&p7@!=!i4{jT2EeUS($K%~uhrOVN;l)+Y9jk`nkh|W#_^_avb9H+&)y!Aa zfSh>RMHhW0?>*#e)^feiJ3V{dlKSi3TRY|7_1s6x>UX`N+fBV1yyMZcj!?rkWIJoV z;eV&#b-sSurSoU2kNfb{S^if(>bZAU_@8^Ib%9}Lr6Kbxm#c9*UJZso7 zb#CYt+La8)Em@~dsobTT>bdqk$X>7jQsw!Z=5tE7?8=P{Re+Qe2#v0>hk*NKW5r{_8R@O zFP|TL{-M@cQTyL|-!|o)>mR9c^Q@Tv(h+}hzwq3WV2%v6PLA2--nTve$VI_84z}v0GPu>+UlJJOS|FHMDnYS$oy7C=sQM}GS`jvWm$ODUy@#pKCx2|63GuhXyGvfAO zX&?|qpS*nOm9^=9N!Q;Q{SFOowzRTrj zH%L3L$_ZFhX;X=ME zB4k$~y9xP;kTF8`67q8)zYx+aWN#t+2>GRuUkTY) z$ghR`M#yi4{7%U4h5SLtzY1v)@^3;MA!Q*IA+8WlNL9#KA>)L!3fWJ{cp+^&^c+Rc zRdlJM=P7!=q8BK7p`sTlx=hiF6}?2!OBG$N=w*toQ1lu_uT}IqMXy(MrJ}18y+P3% z6}?H(n-#r9(bbCHs_1Qs-md5!ir%T{U5ehV=sk+wtLS}--mmBbiax05LyA7E=p%|g zs_0{iKCb8!imp-gNkyMh^l3$(QS@0wpHuXCMPE?#MMYmy^kqd~QS?Teq9-VN zqM|1$da|PP6(UAik_nAsfwPa=;?}{q3D^4o~7v7ik_qBxr#1T^gKn+ zSM&l!FI4m*MVBdhv7(nKda0tz6}?Q+6^dT2Z!_5XlD+!41(Bh;rH$0Sw9O#Q@yYXl zOHr>CAA8_86p<}oQddv=Y-W^lq;~qgGk-$StQBv5MvBo|@x~crD8_0xpZ&?1ax9H@?igR z-G1dnd3fVU&EUNZdo4VvTXwB@-Wq9p3%?k#Uqk-r){t6p1!AXH@kHc?Zfz-N2V17S zV&O?9P?xdEU<{CThit z?n_YoTCI53qhF&q)GzAx&DYB-e!W(lwMvTLs9iko`7J4aQ;PCs@175<>(;kw19Zh= zriyNDT`NDaRF#L-%J;2OTT-$_iE+YcdPP0NqG?cn~D6{$nQDWvh4S+VovGSw*Ko`_I+0}|8;9bt$fq-%zoV( zSt}p*gerf(Rz74UGgG&=^UM7i|DDJGiPPKrz0>U32Y;VpQ>}Q&V{-GTT5%3@RJW3~ z;yfmqZl!9)D=*uPVp@uuGo@azC}nD;Q@=wgTf6jLl&Ws!>cv^VrkJl4kH30fiiKM7 zve);fSgaK<_*9A|zxXBl`A>JJIJ#C`wdAK1e^4vF`O%&fe^@J?cJxq+|6D76gof3v zA4ySI=aes)TaT~#9+&@%Ka_F%_-kK@QU0-%{;DSc{Dbw23UZ~20EF14QV(n&6^6%fm zZsqh(?307`huDKCkFoC$Zr{=#PI-6x76g_&@5{Ixru9?%6=vhsFyU6VL34Z9!R=oG zDKM=)?F$epa`{*7{VD&dnt>Sbpnm8m*x=mXm4y!akSj zy!AGlSzo7l-D>s=->^jt>@9^s);B3ctbJ_6lQjG-dlEPP(!Ni1WHWG&t-1DB{*A+U zif--e-}r62#ErkUnbq=yZS2iC_Zz?P9a{wAZ~Y60+he)#cQ(R89{64R#}t2W2WP*B zGZeA@VE?;+_Mhw|#ecP7OSyPkJ3_I=AC^JZ2)&R7yDCneWUe5d$LT-zuM1WtjQDp8F^t^f3ugX3vBC0_Cb-M zQERehuY^ZL`2EmEJ7 zE)_>>_LM*&?xXna7|r&iqk~b6!qCUo%fGU}NBKC-M#jteeU)NAzJC7K=ta{yLG#sL zqxBnm6c0F2v#$z<>$mn+RGg&QhX!5v9aAJ~ovhgp2Hg64H5BtT`|hA3>`*kKU*$tC z&;otch=%<=6@YX-kd*#8R6{=Jm{Ax)Bhw{N;U#;{z;JNvHT`cD5pfQizG z+i~rRV}<>$qMu*lbK@d@cA0ei>UzbBwW{Kpdc_UXSI8CD)+^4vYN5=R>*^Jcf3!#{ zuCG_jIb^X^tgKh8S$3hcA==Y_?1jr!#SQg}H78#rSKL^ym~w@xxT#(-=So#^v#Jp9 z_IA*+jrMMJd&MWa^MG5pUA|DvUNaMv*IHdKKQI^k*Sb}e2XTJIJ^yJq!9O4~h~@7w z&Boa$Dls?M`d?xBFMnD-+HHyl28-iA_a~HZub0=(m$HZ+akDl1^1Gybrz#8fws7kI zNu&GqDdK(Ml8bj0vuC{52OxXzt-Uz=UjdLUpHCdfx=RheNSmjRJR(lT-SvvQPgE86 z)GMA|MV!R2?yXm>yiZk#-|mZ!>mN`R_tz`t-F2|s@<6@fp{G>EgQ`L##ht`5LP&}= zClHFW9^!V96uSNC2U31ml^d1(r;{VO%?=Kk-Qc7MfoG_5Bz8z4*+^xu>-M4(h5AC2Oph)wdOW*;CI*y54= zkhgxS=49C7l8B-6G&3+57(5VB^Ur8L%CUtw95cn1cviFD3M?;d_$b#rr`db@4P(OZ z!zIsS=qht$kl65>G2AbxRtJdzZ&G|w6}J%U{V*|=U()QWRhxsvei!TQ<=_U4cj3ra zf?i>{@5K{e)ohTut+&}iIzC@opyxFMv0u-z?g=hLt=D*3;HzQZ%iFyk^n44k?+Io_ ztv57#PSABMeCf%XK~J#nr6+IwM|y%wKyW8&y{*~P)l;^xa0*_EQT0yEpJ)`fKrF6z z>%)p$P~wvJH2cV)Z=Z`QHCnh0;vc`S*&sN==J*XJ6(4A}f~5vq|0i&#O@Ou!Xp2z1 zX4!JFEI)*O4HzPBuYTkynTj9PD;6K~v{Zatuejo@XQbkjdc~Aws^Zgn#qu?8>s;|! zz2fX=RmIwR#igIDl`AI0xBg>qe{Hfs#gux*iVsx9)Oy9UCryvcpw{$Or$i%N|!1ht?}TI_!CQ%3<}2o32w8hi|yz#ufh~kA3W#^*Z+7(~tj> zr>t6WvV6)T>Vv%WmFMI$2=?cHsEZC-AXkX=^edJ;ttyUE6@!@#|G5BoIJ-(rpraT4 zeX*)969JfY=ckuH{PrC;i=v&!8;K3jWbcN&_iV9wr2PM#ydOju`pOr6iQTxBd{imE zaL2ED7mvM7;(hhAC*4&qN(g(^Q+-3$_britN8JR!<0y$Ng5ijX8MPO`EV}>bfL)^Y zD=(}oi^cx>N&hu5Z0w><9@PJmi~~`sH+-~GbjC4tLG!}HOQqu2dc~Z#mr2EO^@=0j zRTY9_3$MlPzd!aSJ$U@I%S6A_8rPh|W*rUvLAP2c3z_+HH*qF>lJ3v~O}zLQJv zYZodO>h{m1!j|Y)0l#^XZa<;W9b4jG6182d+aJUIat#463DB^77shF)cDJ zqt=~QQ}+;R9vXrC8pI^9nf`WD)6-0MoKy_y}|fpmDKopQDC&kc7I#(Yz$M;C%mrOG({RHG?dIU2=gR zNN=>hD8yz<_$$scE?d_G0WfJ|Meq#5Un9BTa^1c!sJU3P)6`s{+dkAZNJ3zO=3E(c zf&iGvz*;bLJzUAQh=&cOfvfcZsIes=CUM_ublV5BYzc`8a&xV2-xNHSpje)o>va3< zU^G4#s2OAtHIo;)KDhr%8QiF~QnzdPQCg<;pl*-#EAG)) zHE3E7>9x$2do?s1H4p3d?*1kBi8eB=M|7LSae4XsefjgKZV#7=LBw^GVDD_+dw#_u8Yx2rFmyj#w2?@T8sVpOTV;qg z63$V&?P=W}enEP=!nSw=LYWP#>EvjMMO45ME;>O zaasICFiy9x8!U6cmVn>()V#ooNTnrg37d(1_o8lJ8rY4`_%$zK!UQ!0{N$RKv3>(% zlYpP32)&});^d~pNhNYNB~I4x;{V#U9N|J)Dv9WSI7O(DrE-g}CKunZ-a#u!z|XP|zlXK2 zhV^c};VUs*y|Cvh; zG3;6fbU5NT1HmNsl!+F)&3+OTP9!+#{=Ym=R&Am>>~TqR&_ zN!i>25rYSJPJm#2Dt@17%?=cXO~MxHfOSxY{hq>`Y-=qGV5m9Nun!O1KK9KK9dVdp zPYY_;xNAFV4mWH`@)w7ay}Cs89D$AqYNpB7T2X7RVP6?&je~Th;*K=zB|!(*uW7WV z>-HXW@F>Ga%xr6huCTj#hJ90@pl0F)((uuSeXXk5f?O_phCKZk!(OybX9<3e&iZhZ z&QfObddvL!tsdOuRc`VsH!a7r&R62A(c0uy{?~hzHc7WiZ5(UZM+W0QOEz|7Ijdps z;cJ%JzV%4(AkuD?lXFtwm=i`1)jv~^*HH!@UAa%_k>vLne zn%KE+gq<^gy<@AH= zZB+G-nDZqV+PjyN5ouV95oP|Wx(BaT6-!iwtem|0MOis{iYm*>$tjywPX0HooE*7$ z$d@$Th?vos6>r#V^Ff0fWwYBaZzbEfvK#X^zqR$SZ*TLR;otqZ-4ju zKm2RUzd7ZK>s7~&Yu#^r+l2OxiGS?u>h77e{{aX7>EHkSm%sjPvNlDVs!h`l(xz)O zw3*t$+9BF3ZMHT?J5)PNJ6tsPRG?p6BL`ZfBs`gQvC z`bvG3euI9aev^K)ev7_Zzg53Yzg@pWzf-?UzgxdYzgNFczh8eqe^7r&e^`G+e^h@= ze_Ve;U!y;%KczpdKchdZKc_#hzo5UUzofsczoNgYzox&gzoEaWzooyezoWmazo);i zf1rP;f24n`f1-b?f2Ob1CmU0Ysm3(pAY-~Q!*DQ;pM%(~UEXGmW#1vyF3% zbB(3OdB*w11;&NOMaDAYV&f9yQe(MsnX$sS+_=KH(zwdF+PKEJ*0|2N-dJg@GHx(# zG;T6(Hf}Li8@C#_8MhmE7^o{8IK!J7;B6t zji-#Kjc1H!jpvN#jTej;jhBp)pjkk=qjdzT9jrWZAjSq|ujgO3v zjZchEjn9m=#^lJ9$kfQR$U%|mkr|Phk%J?LL}o>1N9IHhjT{y^JaR;2Zsf?wQIUC( zqa(*ej*T1_IX-eiz z*`jocQwJ#t6n&d6PnyCe5R?v30Rxj*ti`Si7I{4K zL}X3m$;eZYrz6iqo{c;gc|P(&ycc;t z@J!pk1*$& zN18{O^UR~oW6WdC8 zG0!!Zn&+A4n-`cDnirYN%!|!S%uCJX=4Ivz^K$bF^Gfq7^J?=N^IG#d^Llfoxyro3 zywSYLyxF|PTy5TJ-e%rz-eKNp-eulx-ecZt-e=x#K43m*K4d;@K4LyAbUp8McUo~GdUpL<{-!$Jc-!|Vd-!9ul1uogJMMJv4e)^zi5r(Yethqen&O zMURdi6FoM1T=e+p3DFayCq++=&W|pLE{raUE{-mVo)SGZdRp}K=o!&7qi03Wj-C@e zH@Y->UiAFv1?4{Vtu~%ZR#$JoP9(yD9X6&ul z+p%|I@5bJXy&wA^_F?R!*vGL?VxPu7i>-}Kwx(E9t!dUl)^uxzHPbrSI>ee~&9>%P zhgyeOhg(NjbFCw-qpW$>(bh56vDR_c@zx2}iPlNh$<};pfwjuzkPgze}&#+!SO@lv*NSkbK-}_4~rij zKO#Oieq{Wp_`LYh@nho0#*d31A3q^}V*I4|$?^H|1@VRPMe)V)CGk_@r^Zi=_viQaEOX8Qtm&Y%QuZUkBzaoBR{HplX@oVDO z#;=QCA72??6~7^VWBjK0&GB2}tK+xEZ;Rg^zaxHUJpH9KySDQ0yZrlp+OSU7AQu^s zvvsPz&W~4h$ULe4SjZbf4wfr!lM}NeY15i#B=$*1N$E`7taCiq@Q-(CiMut*uLQ>@ zwZv0WJ|yBFAJG%Dv~gPkbh$`IwO?a+q%r>$GKYKNU2{I91k)Q)8%CjjU)~e#(h*vG*NuqNE{*Kv%M-Eu1XS! zQN<_q#8cAd0wb|d?!DYdyd-VDsL9bJ)t}2u)+i)?$YG_X4vP#9vh*XdR0i#Qzjm&) zXj%tH)ZtFKCSv_S-7r^A>_}k;XwT>Te*Tr3^F)#s^eeW7!z9N7Ly?mb<|WV!8i z5er@XcvJ2_L+WpnUkl{dLTPR+|4OtrLuP)&+FSAI6rY8!6NZkmmd6(ZZzwSk1xZaD zFCY4V#DSc>L`z&Mob`^8cvrf0ra#r*^FP3mMk2|jqoAgBctjnh>gsTlRgT&1bX zl~Nh8_GA{D*1i4}FG(9FNuug7%|Be?S3c+;*7}FJep~lRTM_FkiLcVH*Yw2e!p(>K zvvaC{xWhku=)dR`f3DhUuAU$T)4I_=b+mt2?N`3<-*&ZMd6Zu|-!CndQpD;|ci-h- zf1-bCo`0C?SI+lud)}{n!#~{ZpPS~Nd)YtCluF(DIj?bu=Bu62e&^%_dkU+hP+6SYfEro&LGSa$sGXk(eoMT`2R7j33=Ez9YQAlOl=f5snvXiHl?!-Q|DD zTm3n9k(449XM5LBi1+6 zxr6=ZoG7=mWokqwG3&RC#Pf1|PLpHA%BTl_WF*QI68uFh(|X#!@gScyZ}tzj>WNm) zU1O-jjEHLVN-Z%*8remaP76fKCrY$L+0jbQvQwjxIA12tki?dhW~*9Bbyh9isHwx$ z2#1I@P8Ck`>#p^mHBC;LL^wFeex8YAq|t|r#KSW0-u1_0fq%G6PfVhj9w_f&aEP)| zPvSVa<4iqqmd?pvB$_#SxULSLXzFmAk@z=GwLqh+flC}LH=LpQ$C<(LWg~H{D3@b& z|M-ehP_nc`87uoKW93Xu9q#dMmh1de-%@q&i2-9;A4y%*x-?LG9|y--dSbS;{(_!( zQNHEJI-MbYBZnw|#VT>3i0xsU8woT>w@z8!Eu$IxItPwMP4^* z-EJiAkY=9M6VFNY93zqE@Sx5iV&zof9I1cYs&v>2}Io zTJC9Wb6Z;7rg7bEL$+xcR&u<2sgf#Wlhv|Q&1I7%uUyWjQu$OR?WM}q5KXz& zQn8wH@D$lw>#aflf2P;Hf;TQy&l`%Gh}4Lws|+7 zEvE`}w^AsTynNAh3SQYQm5Mo+E|hbXa;A{;@*#Te6${eAaynDZYBkOGp_|2mQ%&Y7)qJMtp0CRr`zlGR+wEpKGcoI=j2;yI;crRr5+j=N zHYFTgtrXH#rwHQ}lGU^ezgNTbESG{=lW8|wb_=Cyo?dw_ub3>m=^|4mwUIr`CX0ni zsah!J9D0zgX3K>npS0wptJQqUO}Sp$O=c=#_{{MN$#kibFVMNPS1hI6Y?bEAxiWl{ zOXo*#*RXk|qrKZ{ZTC9mFInM~`aw>HrgbqSHNY$d?<2jOyv?9M#rZ9(4fMj#4)aY1piG!$kS> znTd~vY~&c_`Ph{LT#&CaNLdF?O=hdewrn+DDP`PZrR4AdN+I~lN#-lnRH2k9W~=E! z)-6;rsjTPZiq%p&>7_EGuhP~Vq;s`~vov0dA@c`Ger}&iCX>C&KlaQ1$c=I)P7KcR zYy17Y?s6w%-u3$f((c%fHmBW{Uqv^aDZqR3yO648Ygw$s2H{0 zgXm3rx7X%P@VYw>Y-#Oi@yZjcE%1Wqyw1^E_T`I6V&2gfm3>*%XwXKXbNX;%W5b~F z`*(DrCP($;bEAv>TRLJ&Y-3rh>Uu@Dn#rYd)oLz{XmPTxldC!z$3dbd3zcj>S<0kC zuvjuzEg^LZ$yBKfqvdm=mf+(u!k(5=qrX0&;^)uE?l);di08O&0lASZxo+OgG1Chf zr&1}FQBcVO$}o)Xtdw$YmN!jTGwF1pS}Y+qvtF{2^fCyMVi=W@a+5h)@XD#GTgnwG z%qlmNgLMn&DK`^luI3!HW4=@@SMph}ioA5o`HEA8>(L8UFBM{}ykx#WM72;ZyOnG? zUGSLyxuTQFd!<~?3nyh=H|u)Yf{W>b{3xZ-msQV6ma^$ev08CM^s3}w_EfM4O6hd6 zB34%>T|s_ls`+dolS+nYDpjgx3e}{WPN(Qju9`t6q%y^nSH>vJrow!|NC+1{O<~3+YUr(Mx4R^op@5XVWlewN%NKi=}M23~S_bIn1AOsT_tybLn(CUtqwJ zse+q!F&@2?mn-G5cA0CrFk{6>;{~0(0$roYDG7>sn zu9mSi)AXl|(5RFOVVcS?=DAFnDO{m<>0$v3xLnB=i(;bju3>tGm6Xq;9GnaWY`R+Z z%DFTRRk4YanAahia!UDp(Mc!El~O8KOkygQQprj-1G|>+4Z<{q5nQUeX%B&$&S$gb zs*`dssk7NsGE=PNoe;e$WGblowo@yyfQ*Nb_%QNfTbT(Nj zRSLN>#(9=0S;mseR>OS3B34BbK_EtSHeJl8GP$HngH9%mEmjF5uL|i>DTR!Ijf%;v zlS|T{T)|7GE9sn@FNE>vipV)9mCbtvr_2|tmP&bsy@(Jir%OnT5W|iuSk5?J5r?B% z%;fVK_`ofe^4U@Wi@z9V*i#-}RZbiiSfVJ_SAprADpo3Gq?Z$h+nrP)SHchC<7G0* z6f!T%oIz|AQ!>ZH2pKw(E0!58#3)WjHIs1>>)B#9pRZ=I*Talek%4h?Suckhl*^^c zUe4oRK8Mf1sE28)_@wM@&3NV0!w#sDEZmQzY zEm1Y8N{-h zutzq#Ne*GSJ)bN%X(#6v@<|-^bUMp?DIn?{*DDtR1VW5ex{UK*MB6j%Jf~c&X1r7m z!^q>mY&scg*s)!hD@D9JL`*4*#|G+BLd)k0PA-(GMjK!_X}-TFHnQhpFBHqT*kaBU za$)A67*tNKR4T#VZi-I;RF%mVoFWFY=Y}m{=ZxS+rQ8MQtklG;Lcvv>1pfUxwQ+Iy)tfeWy8MUPa1aZ?+dndRGhX^UE`e2 z-X7sT9UX1ujswK=?Hc9#xTDIg?ZMCf4%*7c^wC@Q_3G?~!Rx%b{AjG-eh%VQ^Q;g& ziJW83rmOipC{oEw6|-InW^gNBv6!!;;CJ20-0VddXzgqgx0j*TG+^pdLar1)P}`mo{Cg zxD4lSlyIwQ@G= zmN3uYFE@=0Ml**I<|vpH&QJxEx?J@DzqWVz^My>vl*BUD4N zT4u09xeqRga1{-M;v*P=V~hEk!6{7v=>mv_>6J%^N?653%(^@vd@_S`Q%&(PfN7ZL zAy~AU&Y_(0o?AhSV%imx8Q=sDdlYvtT@1qv883^QR>9`XFyJ7=C8RmvAKrJNP;tXp z*Wg(h5A>KGVfk08nPNHb5Yfq&MZ1R*eQ8DnyWc~lqm;|V6pker1KxxSPF)H!Rvs}P zr;-Dr&g5_&2>duqMHF%oshV}eNYO$GJOB&IN#!xcfM1Bxpyg4=g$jmyn2D3jAn7t$ z!e^r2k2=Y|3j!YVy zzLJ|t=gY*PT*5}cC+RT8XR(}eow8d@6YK#{LyCfY16SnnA}a7n2yO?W@Nl>Z_Mm78 zf)xndWr_msrLktQH#Xk7E>u&*vr-N;Pbj9GC-ebwnJZ#m180YsI0&W^=Bkq^h_EXY z^K(=AV$qQo&*egeol>ZUOcKonFi2zvE3H(?f&hbI7IG-H5HARP!2HXDae#eQv#2Wo zQ0#`BraVgaP^FwQ|h(Tv3s zFm0M3pciJ?t7zi9xRcoX1#wESAHX__L@1J(Y(5M#fW{^n70e)_Uf>>HvRJ`btGZ01 zY&blp?17xPsIWo~cvf6@4n=weGzab*<^_|*3~Cs$$$)2Y9sux(6A&3?E>;P!gjI zm@qD1E|2yhpq9j=EaBLf!tj;ns2d&dDzAd@rg{zBSM2a5aJ7hErIR<@S^GwD`Y5S zi>VBDpo69_5M14O(I=J*HZkhOD#pv-jPR4gm^)4h#bC6z6{ErEn$TcC94+sb|e8vic5&5 z5K?(yg(5K$!qIRZ1Goo5UykJ$_5f2PB z3Ep1dPOhA54^J(IBnCVc*E#UMd zlU|XqREngWFhV9z^c2qluZCa?rdlb5PYK?O-U9s1hZ%N(bkRD@#8MW3R>nOA=<5|S z1#%~{VHACtH^ZtXu$#{ch~ieUjF^DfqNFh7!zeE}pn&(4Cz+}Ma|`T|g+V2fO29E2 zh8fZ&CsoEF$)TzoiFlG?lq!(^#K>;sFcI-721ls(;yyI>|~5=(y~C;FpkR^pqVhe!h!|8t}=PR zEC_9&sdFeEK4TJOD->VxR#}hi4dOQv9Z8bt<$+(3D3m9U&k6H_UN#A=BifIlc5=e8 zB#sflOQQanIRn76JM6p9_Pb0XZ{`<0UXQo^MrN@vEz$nyT;^s4PR8d1t1LT2LjWra zd5oV7&|VluP8Z1IaIwINtr5P*gpvRl5%?0ZIu~iUUNoedNJBWY5uH>qiVr*mS{ zzL4#+B4kjEFnz09R0%$!`k0&*jgnm zHBIQ~Y42|FZ}{VH@_*VtJu0}nU&`98O9#Ex+#a~E~d%L zB)K?@5F(9}JWxW%Xx>T@CzPbqax#ZiP)!v>zMzvS<862uf*F{s=>m3rj__WE%%h~2 z52L-4q`EROnb<%Zq)mWbr*Vr^K29Z54&!Yw;3N?MyX8>)=Ie7jR zG#svNh^82(iVH_EpYs`yP8BNR#*kq|UTZp(Rmdn+DnqTJx)-F zUXe)z+6^X_kyt8u76m7RGn@qh2M|hyk)q^nVwI-wGx?0AbSX*p23ZA+nuLzf-W%`n zgS>*Uk)KII3J7{BSxgZhL(nkA^SMy*LuL%7Al67ajl+&T&x#4m!74_D7{Xy3Vq!5F z%#s}Gj7;7#kxbkbrZTB(9=1am(dPkB(++uuZW(hY1LlowjwB=@60|Bz{4h^4iYrW> z$^lQ3F9unKod58J6@!bC}%-iMU@(ckQA z_6%;=ycRmg#v8yAnYA=JK&!vnbJ)+l&ejgMwK8lUr)z*Kc1rbq?#6RG)?=DPB^Q4$ zPpZ9}L}`%_mG{7IFek#O3O8Ra;TDSohVe<)XYEUxyeblA^CW(TVpH;5s^nc@d7$jc z8|3@(U9(7^Y?(a75DY;GSsZf!VKjXe)3S49kzh(D2j!~9OM z@CdmjVILA3L-YzYoaf#wel<%ca^%9L%UP^Ra&K936)K4|pC%QaOf^=Iqy;I#u_lE* zl@w4N!y(iQW=Ib#mC>g~WR2s2*noGEJ(@~oNNx;+kPty3`Ke0sX~iwj7t{p#6U5yx zAb^y@d_j@vtV&{N$iFU>Nyq&>^WEC1R8$ zQ-x?MM^IGqu334P#5OG<00r$Q5bv?bDwG>QVl$SSta>6&T5^-XsM!ixcDx;E(ci_Pjm8(6eclBH`Qq$mMCKm($GB(yqig=tM53x*PAn^;C6n&L$~ym;;< zfD5V!JcS)YfcdcD;Bw@26pLZForTAevxE=8NW%sEBDO{v6j&MMFfT}` zL6YlOc}o%vSaX4?!(tc`cmW)$g)n@TLpdW8L|(yPEVY#kOIF&Te#l`dg^}%GU0CWa zj-)JyA`(vkLTm`PSY%0Xs0<$#RguL8n-ZhOb|>~gxHV1hq(nAa2)-g!DMbbjDf1~D zW{?41)Wxv`WX6ubh}?J~1JYCg{$_MAsIWHxiIb#7;hF%8lc*S?DT#_DCB}_tfj1@P znlvjw8QfJgZJ0TTO-<%f4p*|wdQF0DWEsdh1_w2mO_#&C0S?}?3_OcQ$d_j^6b-Rt z2XRa+D%`pZG$%{P#CXY*8bH#fa4ge?oSY&mHjHFoJ(Mia0$wFb>VWH{ld{AWdkelm zN{1MBB5EXf;pyaAIY!=ep-A+H^+@C~p;9Yh{AUpbSwWmwTh90pbHyKIAu?;RiPdGp zuqeJatDA9Evq18gk65LWUnOf5Nx}`q3?xhxut8ZBfRP0>%nC<@j0g#=Z`Kus7%PGl z#J7>adF1afeATd5gn5M{Z7Tb&&2;PSnWcvc;{{p#^GaCxAMMtqlURKNHl6YD$ zXGX$_WKk2i!KVxHf>|de>o^f8l7xdaC`jruNnl7&?D#MSBxyO|eX?4v$dV}5Wq|*o zS4o|%k_YOB5i*ESj5|=r6mdV&0r0snk67cBC-IWSEFoTywP(y0l6P66g@H@RRU+uD zmtuO8RTD;vayjvKq_|Td(Ey|d6I+RM*?8vPJ;pi5MU;QC5K@K@&N#ws`!75 zK0<{h*(J2B#JVN#Kg<_|hww^pn8=eQ`xBRfTrH9T)Y^l5s0ElRsZnx+ST$54(Lr*& ziSFQLlEsdv7-Fn4YJo7Ja&qmkB?%)-q&rDmts|*7AR!6sBo?Dm@lc8C z0QRA!!}JQ9gNNsdLZiAcH`r4E>>dZY$l|L^DA`UFI!V$q>B?YN*db(?;!NZ!>^_3y z6)IuRb;(H}mXu@FDt4?a5+Iok1|toEiZJqu1q(UiBp~g1NBk!AGwVI@?Pd9EIQ$9} zh8R4a_$g3fXeAGUTQhVB60AE90`O(+ezo^7K;{tFBdtC}uhgn(EKzcwNjs7SNo7)l$;NO|s(`^EngUoQOPuvYM4CtRy} z2eW1EGWbfEv0@cF5$BTZ(u3#%krU*PMN(-M%nmhHaA-PT^vLXDU`WMf#~&GP*8ikP z+^U386NCqg1kZ>F%BD-a7^XKyAd6sS1%Ig2IN2KktcsjZR%@|ni)1?%v5UT8g#>s} zh+&7h*~y4>FVacL@)8rRDry2R0OLIuX4oBU4VJ{PsR4}S;Y%Pv!J%Zo6H?&4FsK?k zq!0lGS-_rRZzy1UylKKsISKXRGKF}-99|OJTBsyF%ym-yQTn)JC1q}f3MgQ0kb%gX zk@UiLVR^7klo#E~Cds@>hhYX}Xc47O%3lg+fZ2%n!XJRI$a~I|!oWK$R3=7<&SELH zi;_X=xg>fKIU$%@$c0f8vN{U%jPx_$51e{T|6H2QsaWpMbacb?ig&~@hv>ab!F7&yel$z(`QhBZ~DpHs+?H-n?gYQ7>F)bub! zQ?Be2hsiHF+_KppqJ}ssy9nTKN=|l&rdVqy8)XRW3-S+YOMru10&G8wH!%1RO|dBq z`wfxdB+(pjUtDIk?_>EQ-6i%P<^{=06&}KWLz23(ev&{3a1$9NM8-qqlzL^X*gR{9 zz!{3{c|{L-XR;iLu@mA8Go4X->{*w|fDjc^#7JOS(6p?RCcKKm2s7+xJBFN?f_S$q z-oi;G-o$Jo)(3naMz#|yV-E^CLM#?6)Pu=D3efv3hNK zsj{9@c1I#K8-f`~S0_fyw>Er)1|-C!^kcqOzKi#|&DCIk~0 zJJK5}BpHQhiZm4R`7uH8b=j~8yM~kvz!-9timXNm(-g5{38W(H2&0pLimU-0CDj~& zTfRkzUZIIug2Mh71Wsh%4SX+=&R~7mZ=@B3Xv)ExB)u<1tPIbFt!4_~3*=5Y>p6w>x{J-q{E7}M>?J)v9p^eFN-e`Dr%|VR8%2&BQsDE8fXU}hpM88ix4l!(jTJw z7|0|`fi-~WAl>m!Nke2SDJM)**g>+jkC>h;5M(76t{icHa{sa2kjf!?g@VAR1Q{)Y z1Yq#72N}^+J_bPsqV-{v7YUd+YfKk#G}+^z1Yb$ygrzPlj}DcYUncz?8`&Xmr--Xl zWCIG2fmObw7#eSNI?OUf)yQ@**8pKd2Rn|3s%o3c&G=CAq{ zE$tmWlRT%#Kau3b;Gm|(?QEr1-8r_+nb6Vcjct<(wFheR_MvvVR9#_j$6ABGPNn3D zdDWF2Cv~*C!}fC~IZe*~-AyX@zqUDxcpN26IFfJw)N|F;vHMNTRYmFwh_&V zf$ow^oByrSx=Z_{(WBcsI>z@*Y+)zPaUJfqmDVxsUENN5#rtWS)73R{yJ3~q+ONG2 zoKWs)qpJR6#{;_=QrGJmJ$fe&T->4V?%u~4JED1?|Hu|G`<4C8Vr9!&cJt(`1jDpK zE3>1F=d|;%2~DlCjc8lzeoeBYs57y(i9JNecFM-sJ>9KsO+ODxV;GW()7{beOKQ8C zI(yo8sK^lQ(C+ReFWa`GSLH+Q+u7RfZ98DQY+u7ZxNKzI(axURO*^bB?sC9({zqc_ z*0D{^J?-tX8}~qUBbvXyfexuJvYqS5xhydoH%Ml=uVb%s~5`TpIlYzp7S*1K*`o7eo` zwJ&e;m)j@hk}dnUyZg87@3eNeIGqz1=L7qV+5kLUZR^-y%~r*SdwWdC_OUy4w6!tH z9i2@ceCdm@UZelTL$hVSh8Uoqs{V+`+_$ye?byHXM}!Y0VYZ{4k0jDS_|3nrw+Ia` z7|}eW@5O4OHnvYHW?QNrf}=&as(HxH&ID(y*X)fInKBVkL|y;=uA8kLTz8*NXJS|L zq<&-8XO1!P+mHb5EIMKuR1R!XGeX$HJD^)8>zMZ5HQNRvu|8lM;I$FWgOQIDow2?g zW31}4!GD|9t`?a*P8*-Kp?%W$V1_hj>#FF0rmp?@a!tF}$E9f^J6H!FPX>KAUT|D% zrE5fUW3P+Uz+J3={%hAKSnnC$iZ*ZZr_wJcx(<@8iNq^J{BX7#YYXOBpV8aMW<*^L zph28|58rFzF0xg1d-ulN(YvR}mgsLLJY?_hYHT|ez^X{r5g;iV>Yv?HV293=0!;UF%u*3hqr z=>vbAKsN_7vUbe|n(1~rVV%!a1L^ICF^PH`4ZZ?G0M%Xrc_6PKU!Q&356EX**r30q z+Ji`F9{%$-ryC1q!k!)Nt;o~SqeVV%+tco=!eMP4?HFX4ezQ+1YBRdoQxkblryWt& zIXoMD#Vz~RH>uC@<9_mBy{lAHJGXXrALt9kz&=%SZBJ+7h~{d&g^e(7ckSrhwY80z zzwNp~@|me_>IOq6waOImuZP21)G&2=l}Qu2#x~o?Kam|R$p04EDZY7ff2FU631^`P zb$%eCM{bZW-6`s-v&rrFd1vb+R$PqrTz^{CuU&V-pRqx&>gW5k6)?|;=B@fv%Olhv zk5m2Vr4Rc~o4S?H>XrokP`*6V8VU7_X%x1(i(<4$Vr@|w3$O0b6&$ovtEmI>YC+~%G84@j%)HH~pS z#du02Ho3tjnyShlb74)^a0iB}-S>LBadCe}9AH400G<572=r^yFJXRvt4_~Fu;I3K zcK5E^tFzhb?&)kFNXF5O?-3{&SC@GG1yFrR2R13vX!+jH6zMcyQzI0<^Yw1@Zt?TY zXXNJkY*g>@2AN>cB=rZAhE>L)pt_oOU%v&_WKAsoa!jx`a~|F$Es-Mk&z*lBeH=D)*k0Aszq+P&sMonCiKmAC%&b{9@)-UAiMa2*zCOHH zYWBK%CV0t#rq%`?`Z@&komVLnU%+x3>Xh z)X#X{$(e`{g5CCL?ZPoexiO9Uv_x;d?5oSb_D~;|9(^O2GydNXYrz2TJaAjSFD}=} z5zWQ^a=5?S|C0?k{mRx{N%srw8=xR?H_FcIFVOq6KF|<% z?%yQpTb$%|I<)5R$cxMT+5jxl%MKW@nJ*TMTMh7RzQd5tK>n!rQcT!&n00~4Hyd%!?l-NREg=j8Klt%C%gGlMoL>Miw9Wiu;HE@HIPciMm5 zPwe;kI{kS`K&gOp#Fpyog0Fj*5zV`dX-ABE`*f00J-TCjOLs?0tEvHB-BaPLfT+9w zYELzf6vVm{o-ELy{Pm;nZ8uEj_4h_JPx((B;`QHlpwV3ani0)SYLcmXv0psde+CYn z#8%$|g{oOlH+EzquYXQ%ZT?!dwY{}#TuV3bWefNLLanK_tJ48i-+%pQZmeAC;}Q?& z(@n$^+N*sRw_AKW58T8Zp6YLV2Hx<9<_r6eZlCX8pPl_A+Iml}gAl`q`(N1|-qYpn z+uA)&*;eZqV*n=arD1vA7f(>DyOY(Q!p?=gyL-yb0YW?szX-_RX&cr>ZP$olzY}Pr zMGEk`*nllWs|6PSL-Sw!ZuG{N>%FLPcK~+`3&%#_Uye_kCJ^KKuMD2ui z-TOQg8&BAel+?cnh{^CWw&i$UwZ;nRKt%7|(U4d{-E$rX}t?l0agd6%>F!K48=IKUx{HoR4zv*WL)|wf4oZrr-N>5jJ$As2D zc{>sHs@1A*Qgc^!7p*gpY!8e@f7l40_4-jCO{(c>pC`(2Hh{cYqkj zW4)GYxudK3yX#yS`NNJAIwU61CGJa~@aWQwmAAd7FlJ0IYkHkQgbnW7{p*1ZHS=X7 zq)}bg4s3iU37ro32$8+_YmC@H!f``BL(PEeQTVldJBeEiJ#0^czdoN`3-^u9U`r%YzGL_z~dLFVcn z&Vgw0o#YLN%gpPm*uL-{@uuXqK0-h}MjHP)e|vRA^VbG`oUn4D(z*|STUx%}=+W}M zTI5enccDe%q(%7g(dHZbvqc}BRX3ITPTd+NE%R0ZjK1Mii#Pb8;a*UouUnM#6JN2H zfU3)`z;@ZdoUKigzP8P}4>h9s+h5QpMkH19s@F}0y#;a`+vNSR$7u_I>|UVbh~~|L z3zV$`Qy56&3VOJ`?=%MAOQk5p|z_5me<8v#ikw~ds+AB znv&ftxIjI^_k87NP3reW--qK$2xd*En*)qD@O;Ot-*R7W+X&;MZaUVV*T9|95l4Z$ymu;bg&0B)a9Pa1>~B%~}-D zU&5UG5P$XgRNSFjs58BD5WWd`heVGJG^4)XBO6fsV>S#S4-YW>RI#t~-|veB^1V0M z+-oAK&)@f4pZ9lLow4Leb+=ahC`w>o_Es7-j_O^vlbCqEei_mH%i09$({fElsOc@k z>a3en{($zHQoY-*&49t{Zc>A|m57yQ<|IIZpt3u)wPJ&9v_IKbRE_C}xrm3q&fplH z`9d>zh&#c-+3K1ku9lx1(0t4WKJ>;|czbwboeDUkZ~65R@Baxl9&e`*<@OGM7(o@A zQ=c!H6ee7k!+tz*fN-&Tv&se%7d{^~*-8|SB;|Cda7-;4b54KZF@S2Wn?mcycO*_U zyvui91Xm1abgeHgzgWY3vj*{u9*t&hQ7V;)YTJQbt)f-85W{bm&dv@}paPElvp?_~ zl;*wiD{A6?U0#JhQ#MquLaQ|)6^JN=*t%atZ-`CwiID!Tm-W+xqAE1)K!(;%ZD98j z*%Q-Se(&1KOSK)?YwGs7toIDYA*$sYY}w}`l!n+Kf2vERW;{6@i?+YV2-=ZkPuJJZ zwc+Sv1_eD5;a7hQu?Sv%e7S|R5@&3ugTaGRZayG1MAFydn84q+6WxJOAzKGFsA;M% zL`S|_S9`(TH7NX>BK=wk@&me!Uf)3mRjGEg@mJJ4y$KzY$Vn0>Z6Xu9*>0cITCGhe z6}?;>+II=zwESoJAsd^BHz0)3v>t>ph5&NsMtp(#+}?maF{1g20mOMtul3Fe?EE|3 z)|!&f)PAIEKT-pUEn$f^Pemfhgz3|LCb=KpZT70eeGSU5K9>xTib&E8Fj*(2s*15R z|Dm5`S|@mXskBeWUe#(>1y7^Bzg4tO%nbC4x!2R)dH^6L*4+eH*H6%B=;&%uOk8!F z1EaSE6LWlXaX_;IgRPb)v_bRyaR0N3l&MLE_3dRb?SkNw|6)6L^dRhN%A~LMm2p?; zgS|w`7|H+ZRsMXTdtHB>R@t~zw7%GLKa{GDK!f^r9=KQg4iaSETmB-ayE7uL?tBl- zP61x4VCy=s^pRP;eW~%a4>Eu{?v++XKlXISdjXDvOES>2$F%eQ!pyZXRK{R0#nH3A zChlvuZ(tVoH|zY^ZOxk)P%89($M5g#3F=7-W~(H*3y{h5@FsP%)li6ps|s=CNuv_TiI$)<4>LqSq-9j4;Y1Vzo61(od9ZC?9!5^XQFuP=8b! zixT^0a7&BiE!3y8twM%=wlJo8kJtR0UiL*FG^-v^P+9K0NexmNh++C(tmMmx=AZUO zqA|t=ldgTKe)x00)eE~LAp-PvM6=bxjT5@OZnB>JwIH=Tab+zur`Exq17vQ9EgRe> z3p&zGvV>%V(11!rJ6Z2P?i=9izY7$tal$(7GSI+^aOZpSVMOmx}VC8%8OEu#hC=w19h({q6q0;;!b$vZJ~S zfxs9K9y2x!qsSk}Bd!~o+j8#2t#zf@m_3PI&kDmVUdp-7aNWzB< zAtoRtL<*ZkilRtJks@UgC9JYY0)GGt*dY*$NZG+AQa1UWbLv!`x>a@G?GK!d{pR+) zb?a80@AEsSGX5_}Msf%ipT~c?Gvf94ekWgs+H1l}_m9yY6^Q?toOUzew1~W{Jz%;D zp%{B=Swm7YmGjw{9Rg2>+pZ`So_3`lQsqpJ#hmR)>+`s;sW|huGrA@H%5!U34 zrMJ{tX#9*ej5!u@m#^fTo;{coRoogK$pqDmY%3bor%1d5b>gk+P;x;!LTu*-7Bo^3 z?jv=bf~v!hsvhzch{uFZ7_imC3kNp{7()g}57Ae!M0BsL8^r0LAzM3_?hdCL?8~;y zlUTVDg{KR+iMO8~xEJ{n1xbAE6#ZMp+A3B4tf4ds zSQC^b!uyb$mH@#-UV0k2gyzmN4PIXBDH_lgFmMT;yB~2F4?=ZY1$`D&nb>EmNS0h4 z5BE4>*8g@S63Dk)+UH0h#>5t-15!NdtKu&fhQ&%kHb`E$tAd2x@wm8>9`fQS^=!On z9Pia|_m6Tl4;taDQBv<}87>5m0OSC%0wX$wV~bL*a{6TMc=R0NP%_N^?|nY_gcX$< z{$BMN|0e&c!ZK^c3%&wavD=se1=3WXCxfRDqcDN;1OXP8x254a>+rptLFm{icf z6|xNVZ;<#%LA5O+r$wOlHP-(*84$$;Aw%GGqPir*4|fufZ^HEzCV3{i9fCykWX~N3 zHtq6cJOx1e_Cc>QCnICeQiP1ONyyS@GVYC>;mT~EQNx@_lf^^%+*px8<01~+-=ENA ziXL1#i6pWRyyERPHyorkD z?RXc>>5t-9cvIp?go1}kKwQ66b+`7!0(^)=MSVAyB!4ISYQ7*@B1*l&;<*gDFr%#3 z4p*;8N;X`l``tsnUJQY*J6nViow>8?5F%)fJ!*FLHxDENwm!av*}Y?HU*hYZD!#ld z9}6<)gZR{XSrGRcIFA%`@g=CAtCcr;Tuv-ylvjrb;vYmrcr_LNo)j|@r5UKf+dCAnv zf&2X<`Q#eHctV-HZ1e%ic{*+^1=lep$&31`PU0bIZGlWF{hSJ~Qh|!QQPTt!;m$5D zi9kwaP%v@Z7T&9E|3D)ZLi{3ke+-d3SRE$KYyR=r(mI*pqkXwHp0br$#zjlk3Rdd6 zC&LURZH=Hr!9f=&JWsqF;jxr4LCPKo$t587M&mvDF>qhcWewH>qQBLnr|Pp5`={tW zpVuE+byv?|42v>Pxg|9`2|I+H+Pym+A>X&NaVOs~FTHpbuA=gVIwydF&>dq}pemeM z|KseX1=ohdzroJzAD3O2kHbHw;i2_i06KO?R0`S%iM#uPbNzHSOTNJ077AM#v(UZ~ z$(?uu{n5SeRg?o#M~;T-dyww{|BSXMW1{L1ny^_P-yXh-_B-yIp>q>Gt-B%A3bBcC zZXGblF3H5Ef{w_a0}HYzI!KJE`n@87+ns~`K*x*u>)xBDr-vI2*bkrah}8#F?1x}J zL<*9E=+;%(a>G+VTTM0(Joi*mp%l^(_-ot%V^&Jgy8N0DoA45`&DvHAW5F>2d&Rt@ zFa81x0><|(pg7bfCV{$;;Qsl>V1Ks0T-Fm%Lu)JWvEi=Wn!&I^)$0-rBhcoMAh06B zEJ2_vgn1y^<7Hu0`9|YoV%>+*kp?!3`pdEs<%o8&ZX9{lrx57-0|M`CZ%9%}%j8z` zPY+J8fijl+IAB(?2<%r!Tj?8p<#lBV!Zt&x%ID50fvcPUdsZY+`Xn_sC`8X93f5Jj zEM{|ZkDgiCyoOHCzA1-_2Fb;EtU`#|58Ry^zjhYLYriyaBvWv<#B62^x`o@2a2o*j zBA#$h@XPHtr-&2}Lb3f*C>J#6sfAp6rZ^T3d)l`a<>ukAEbECl+!Vy46cO0JXwZx{ z0*Mn8$s*lvef9?a946|2Xzks;FTa? zh8rKrUQ8e09&bBVf~xh+Dv6d*M>v|SQqMA!xsHDunUebucU+;qer`}trvapb+XR|H zZ9gAjsT*?nzS$ zfnjo662abM3&n2Xr^3o6879m#bmDxDMBMRfl>3!ghV|yCHQDysYLqW@uW^r5*F)(G zCNGcBg%vvA`jk zTO;?N-k=S+o?+3ENW%htqXV9p6g&7-Z!%nvmKCcvHT*F@wcU?u@k@`f5!WyIip$(S zyh6p`+^3OS>*b0V?s>e2mFF9kJfZ!rTHoGzi=d`|o8zi=@~*sZiSM>R>^0nhOWDth zdnO7|Zw}H0HT>6BG>(8t8X8sW=iTuJUak*vl<*R@D56f$WNGlvaV%~exaW(nWK~GH z(5(sAdt4mPwjkJmR|4E+-xkRTg8*o+ck`>O-8_w5V7OJ<{!SOARqOKJU25VCmHWkP za)%;p-P5l0THS+_Djt)$J*o}D-L(Kbh{e__>Vg2AA!Kgl^68LjZjc5=zd&EjRtS@r z6(!G%1GeB{tloX}?-_}~55EY!{A7ei*~{>3=TO8)z225SbU}93tA+39P`l5S$3~ti z;M^6^FufOea~71Z!V5&<@ndwIL+bF7E(5hRqK zCYBKQdttaI<>%RD(yF1t9K9q_39T&j00ji`qC17aO~m@&pF*@~eBOZ@sNh zHH2son|ZC7?IDG6cZa|r&1CwDd%fx_#Mr%ut57$ZsRCLOM<8-J-H|(O!A2=3JJ62t z;rwkNX*o-vn;+u4Jrb+c9sZ0`5dzE_`E^gv-Mj{2=$*SryR>!=Rzb|mV4Ec2Mn#fM zt}AG-$l4Z*!xm<^t`cSWR3Atn2&6D@QsbBiN4$VyOReS%Yb!NyUpjV-qk!2= zw*@>;{Nz65yFf~+XNX)55=|SDXc9+1=VankfJABp zxQENdUi1HZPxU$N|AGNr@qlv=BXq_kU1CY>S zUCC0${s4zp_;ZCA5tR$@$1e`tGina^9CgaQdLv{_{v}{(Vn>zyB3`>P_tB zKX8H|Y%c*ZEGMt2eqg>o|Dd^v1^%BE6X>atUC06PM&&A^X2Ez4wh7ag-r#=@+_!TP zlYDWNP?w@iCFUh$S5f4ZbqU+Ggy;9`G`nK#Gh{wpA zAwMx21q6{_o?t8Er$&3{HFnh3PEJnQ*oo!@kbi6?NLYT9Qx2*x&Uc@ z24NZS=Qe^BOj4YmiUpC?1QMNUcYQ~WQ-J#|M|sT1fE~DR1sT}QSS%&9U@$rUZ51cV z;V=i1Iufxh9s(D?S&7>U0lh{Y@gL42-sj)DY0-9+VFL0Sa2S9^JQuT>gB5I_^%fW~Ma>#Ns{7i~9O z3IB5)uga5`*q{YJC+w4F&l&y9L5A>tb6XD<8OS^u4eg@CE@%2H;{6uc#3C?xuT3o^ z_~IJ0kHDl4`}Bfx21V-z?gzO8U&-D?+i7un5-I;Y+^&GUC(HJir5((G_a!;5VBr2X-}bqLR2-_(g|B3$g>~&v zkkJ_&xB{54?*I7ik3w$NGA5Tt4g_LKV8I0+PtNVbVPgmm&lZ6h-cl+mUd768Te zE*cD3@eW~AlWP%+$Q%1+oKo^0`2?S?m~t}Z$>boihO9DlxoxP)>E15%VS}g}>hW3! zlu0YRf)qE&ATo|MBhR9NVo&mS@v*hnS8DfgHp$;$1v}=h6k}Vd$RV)U=+EBj!)h?CMHde^Ns(cVwyLcT_t)7>;9Vq1#Cp0=;Y7R<qw&JY zD^+b}&ANlHT3&^@BYGLk3ohjj;j_YzPUm!P{G;l;zQ6K~h)sN=%^i}}=UJ-10&lG# zcmDbaCJ*b6IRO)>(;^+0iKb4!KRHrhq7-3~15}S{f}MDbV&GPaeiLPLOG&k5^{1k6 z)IuTZR6duS`?OXt)GvD+FOXO!hd&txL5{+-!X@N;Z(ahlal8xQGooP7P z1Unh$Q?@Eq6YJ58LLea@pAFH8s-*cyS)8P5JDjw8DvjmX!h(HtBHSOM;m?<~3%^PATjNO-AVe%xDR-;_Gz0VVG`R z8{%+-$E11vU-hKg;OzzZL4liAswR}@9#t(ypLXD?C7wnMg~Eq^1cgqzyIYr9tyN%j=qFw`P?2~75%^>a++OxZR_@39MoraS2)l$C!s z=EkK3wBgNmC92v5CJVe&vJf8Rx^ISd$Z^nJ!Dj?Iqz$)3NVIF2Z$nnvr^*wAzZ|$P z%~#fn=T5n-DE^GlG>~?(O++vn-7PuKfj#(6ly|{A);=lg-i)uzBw9p^MH8u4wsA+_ zQJ~{mfNY_a2w1@u5#Bo{1Yqb>0Ni}PS}NbmWk%u6#|PCE1`VX%Grai^`Bdjqk0A-K zM;E0pZdAx+zhju_Ri9Tg_K|#0os;i%YYC;_L(1azpt-$+m{aaN=-X^8;RYRTCSMtP zSwiST)<6Ps@v=om&!_omDR9o`9Pt6a^VaLDeRtQeS@D&%0DGUMdp2J>bAFJByo*TX z`ef(=gPze|l+O>rvOS#LLh^gqe)SO-GtaFAGr|{AABrE0h}6z_YOr!=x#JFo$Y8K$ zf-$zNzN+9sSLUEOA8i`6hP{Y$?Z#91i_hJ|dD}Cj%Vy2S6C39rchP(z9qbZH; ziso6USfFdN--tm=Hv`&e{Zt_AH=_{?*z{dKDlyl`u5*M&N}Lv53$ zzS|y2Qsm@at$Jb1cl+|Hm7%#LUdU$Aw-&rUwf{PqsVO5IL09D8*~@b~w1&C)Z(sZ0 z*T4R&fBxp#FTCx(x1N66-j{#&-|u_lEvH}q{14yzkN@%MM}PUPfB)W3zq|6q{{u4a B_6z_3 literal 0 HcmV?d00001 diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json index e623a8a26a..732978cdd9 100644 --- a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json @@ -45395,7 +45395,5 @@ ] } ], - "time_nanos": "1735810168549000000", - "duration_nanos": "1735810167549000000", "period": "1000000000" } \ No newline at end of file From 480774f31c355ff93c0ebf7690893c06a61936da Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Thu, 2 Jan 2025 05:09:39 -0500 Subject: [PATCH 4/8] add testdata2 --- pkg/test/integration/ingest_otlp_test.go | 16 +- ...l-ebpf-profiler-pyrosymbolized-docker.json | 11408 +++++++++ ...-ebpf-profiler-pyrosymbolized-unknown.json | 20741 ++++++++++++++++ .../otel-ebpf-profiler-pyrosymbolized.json | 19991 +++++++++++++++ .../otel-ebpf-profiler-pyrosymbolized.pb.bin | Bin 88532 -> 95526 bytes 5 files changed, 52151 insertions(+), 5 deletions(-) create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.json diff --git a/pkg/test/integration/ingest_otlp_test.go b/pkg/test/integration/ingest_otlp_test.go index 51bad9c3b7..2f098735b7 100644 --- a/pkg/test/integration/ingest_otlp_test.go +++ b/pkg/test/integration/ingest_otlp_test.go @@ -29,7 +29,8 @@ 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", + { + "process_cpu:cpu:nanoseconds:cpu:nanoseconds", map[string]string{"service_name": "unknown"}, "testdata/otel-ebpf-profiler-unsymbolized.json", }, @@ -39,9 +40,15 @@ var otlpTestDatas = []otlpTestData{ 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", + { + "process_cpu:cpu:nanoseconds:cpu:nanoseconds", map[string]string{"service_name": "unknown"}, - "testdata/otel-ebpf-profiler-pyrosymbolized.json", + "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", }, }, }, @@ -78,7 +85,7 @@ func TestIngestOTLP(t *testing.T) { for _, metric := range td.expectedMetrics { expectedBytes, err := os.ReadFile(metric.expectedJsonPath) - require.NoError(t, err) + assert.NoError(t, err) query := make(map[string]string) for k, v := range metric.query { @@ -106,7 +113,6 @@ func TestIngestOTLP(t *testing.T) { assert.JSONEq(t, string(expectedBytes), actualStr) - _ = os.WriteFile(metric.expectedJsonPath, []byte(actualStr), 0644) } }) } 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..20ce368743 --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json @@ -0,0 +1,11408 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x86b901", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dd38", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae8b", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b96b", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xb3ae73", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9b8", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b917", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dd41", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae8b", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8e4", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8de", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b933", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9d0", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dd49", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae8b", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8f4", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b977", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86ba05", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b962", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86bb1b", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86bb61", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8a6", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dd4f", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae8b", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b909", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86bb5d", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9eb", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8d7", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86ba08", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8b8", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dda7", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8af", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b841", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dd47", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae8b", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8cc", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9d9", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86ba17", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x85dcb0", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1504103", + "lines": [ + { + "function": { + "name": "srso_alias_safe_ret" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b959", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b97a", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9b3", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xb3ae8e", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xb3ae93", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86bb53", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9bd", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b8c8", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b986", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b88b", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b921", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b956", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x86b9a7", + "lines": [ + { + "function": { + "name": "chacha_permute" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86bb50", + "lines": [ + { + "function": { + "name": "chacha_block_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3ae70", + "lines": [ + { + "function": { + "name": "get_random_bytes_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3c9f8", + "lines": [ + { + "function": { + "name": "urandom_read_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e4d8e", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5ca2", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0xf735f", + "lines": [ + { + "function": { + "name": "read", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x405275", + "lines": [ + { + "function": { + "name": "cat 0x405275" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x402462", + "lines": [ + { + "function": { + "name": "cat 0x402462" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" + } + }, + { + "address": "0x2083f", + "lines": [ + { + "function": { + "name": "__libc_start_main", + "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x1c0000", + "offset": "0x7cf4f83a2000", + "filename": "libc-2.23.so", + "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" + } + }, + { + "address": "0x4025d8", + "lines": [ + { + "function": { + "name": "cat 0x4025d8" + } + } + ], + "mapping": { + "start": "0x400000", + "limit": "0x40c000", + "offset": "0x0", + "filename": "cat", + "build_id": "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..d94320ca4a --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json @@ -0,0 +1,20741 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "Merge.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "FlowValueWrapperInternal.kt" + }, + "line": 39 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x181", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", + "filename": "SharedFlow.kt" + }, + "line": 392 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", + "filename": "SharedFlow.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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 1034 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 999 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 758 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.pollGlobalQueues()", + "filename": "CoroutineScheduler.kt" + }, + "line": 1040 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 1034 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 999 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 758 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugCoroutineInfoImpl.updateState$kotlinx_coroutines_core(java.lang.String, kotlin.coroutines.Continuation, boolean)", + "filename": "DebugCoroutineInfoImpl.kt" + }, + "line": 89 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6e", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)", + "filename": "DebugProbesImpl.kt" + }, + "line": 454 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)", + "filename": "DebugProbesImpl.kt" + }, + "line": 428 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)", + "filename": "DebugProbesImpl.kt" + }, + "line": 419 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)", + "filename": "DebugProbesKt.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 28 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "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": "0x10", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.UndispatchedCoroutine kotlinx.coroutines.CoroutineContextKt.updateUndispatchedCompletion(kotlin.coroutines.Continuation, kotlin.coroutines.CoroutineContext, java.lang.Object)", + "filename": "CoroutineContext.kt" + }, + "line": 145 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x65", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 224 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "ThreadContext.kt" + }, + "line": 31 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)", + "filename": "ThreadContext.kt" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.internal.DispatchedContinuation.\u003cinit\u003e(kotlinx.coroutines.CoroutineDispatcher, kotlin.coroutines.Continuation)", + "filename": "DispatchedContinuation.kt" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.Continuation kotlinx.coroutines.CoroutineDispatcher.interceptContinuation(kotlin.coroutines.Continuation)", + "filename": "CoroutineDispatcher.kt" + }, + "line": 155 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.ContinuationImpl.intercepted()", + "filename": "ContinuationImpl.kt" + }, + "line": 112 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.intercepted(kotlin.coroutines.Continuation)", + "filename": "IntrinsicsJvm.kt" + }, + "line": 182 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.joinSuspend(kotlin.coroutines.Continuation)", + "filename": "JobSupport.kt" + }, + "line": 1536 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.join(kotlin.coroutines.Continuation)", + "filename": "JobSupport.kt" + }, + "line": 546 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9f", + "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": 26 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "FlowValueWrapperInternal.kt" + }, + "line": 39 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x181", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", + "filename": "SharedFlow.kt" + }, + "line": 392 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", + "filename": "SharedFlow.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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)", + "filename": "DebugProbesImpl.kt" + }, + "line": 461 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x73", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)", + "filename": "DebugProbesImpl.kt" + }, + "line": 456 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3e", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)", + "filename": "DebugProbesImpl.kt" + }, + "line": 428 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)", + "filename": "DebugProbesImpl.kt" + }, + "line": 419 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)", + "filename": "DebugProbesKt.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13d", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 102 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "int kotlinx.coroutines.internal.LockFreeLinkedListNode.tryCondAddNext(kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp)", + "filename": "LockFreeLinkedList.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x35", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.JobSupport.addLastAtomic(java.lang.Object, kotlinx.coroutines.NodeList, kotlinx.coroutines.JobNode)", + "filename": "JobSupport.kt" + }, + "line": 1530 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x137", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.JobSupport.invokeOnCompletion(boolean, boolean, kotlin.jvm.functions.Function1)", + "filename": "JobSupport.kt" + }, + "line": 495 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.Job$DefaultImpls.invokeOnCompletion$default(kotlinx.coroutines.Job, boolean, boolean, kotlin.jvm.functions.Function1, int, java.lang.Object)", + "filename": "Job.kt" + }, + "line": 353 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.ChildHandle kotlinx.coroutines.JobSupport.attachChild(kotlinx.coroutines.ChildJob)", + "filename": "JobSupport.kt" + }, + "line": 971 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobSupport.initParentJob(kotlinx.coroutines.Job)", + "filename": "JobSupport.kt" + }, + "line": 149 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.AbstractCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean, boolean)", + "filename": "AbstractCoroutine.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.StandaloneCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean)", + "filename": "Builders.common.kt" + }, + "line": 188 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "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": 51 + } + ], + "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": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "FlowValueWrapperInternal.kt" + }, + "line": 39 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x181", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", + "filename": "SharedFlow.kt" + }, + "line": 392 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", + "filename": "SharedFlow.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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invokeSuspend(java.lang.Object)", + "filename": "PerformanceWatcherImpl.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(com.intellij.diagnostic.PerformanceWatcherImpl$FreezeCheckerTask, kotlin.coroutines.Continuation)", + "filename": "PerformanceWatcherImpl.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "PerformanceWatcherImpl.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "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": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "FlowValueWrapperInternal.kt" + }, + "line": 39 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x181", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", + "filename": "SharedFlow.kt" + }, + "line": 392 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", + "filename": "SharedFlow.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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x12495b0", + "lines": [ + { + "function": { + "name": "_raw_spin_unlock_irqrestore" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15eef6", + "lines": [ + { + "function": { + "name": "try_to_wake_up" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15f46f", + "lines": [ + { + "function": { + "name": "wake_up_q" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x225ea6", + "lines": [ + { + "function": { + "name": "futex_wake" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x22291d", + "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": "0x9b05e", + "lines": [ + { + "function": { + "name": "__GI___pthread_cond_signal", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void javax.swing.SwingUtilities.invokeLater(java.lang.Runnable)", + "filename": "SwingUtilities.java" + }, + "line": 1421 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.Void javax.swing.Timer$1.run()", + "filename": "Timer.java" + }, + "line": 617 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.Timer$1.run()", + "filename": "Timer.java" + }, + "line": 615 + } + ], + "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": "0x1f", + "lines": [ + { + "function": { + "name": "void javax.swing.Timer.post()", + "filename": "Timer.java" + }, + "line": 615 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void javax.swing.TimerQueue.run()", + "filename": "TimerQueue.java" + }, + "line": 177 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xc7", + "lines": [ + { + "function": { + "name": "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)", + "filename": "DrawImage.java" + }, + "line": 993 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x38", + "lines": [ + { + "function": { + "name": "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)", + "filename": "DrawImage.java" + }, + "line": 590 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)", + "filename": "DrawImage.java" + }, + "line": 88 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "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)", + "filename": "DrawImage.java" + }, + "line": 1064 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)", + "filename": "SunGraphics2D.java" + }, + "line": 3338 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x63", + "lines": [ + { + "function": { + "name": "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)", + "filename": "SunGraphics2D.java" + }, + "line": 3381 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)", + "filename": "SunGraphics2D.java" + }, + "line": 3323 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf0", + "lines": [ + { + "function": { + "name": "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)", + "filename": "StartupUiUtil.kt" + }, + "line": 436 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "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)", + "filename": "StartupUiUtil.kt" + }, + "line": 287 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5a", + "lines": [ + { + "function": { + "name": "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)", + "filename": "StartupUiUtil.kt" + }, + "line": 260 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "ScaledIconCache.kt" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12a", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "CachedImageIcon.kt" + }, + "line": 145 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa0", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.LayeredIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "LayeredIcon.kt" + }, + "line": 287 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa5", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", + "filename": "RowIcon.kt" + }, + "line": 110 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)", + "filename": "IconUtil.kt" + }, + "line": 251 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, short, short, short, short, int, int, int, int)", + "filename": "XRBackendNative.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1f", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, sun.java2d.xr.XRColor, int, int, int, int)", + "filename": "XRBackendNative.java" + }, + "line": 142 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe7", + "lines": [ + { + "function": { + "name": "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)", + "filename": "MaskTileManager.java" + }, + "line": 198 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc8", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)", + "filename": "MaskTileManager.java" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x27", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)", + "filename": "XRRenderer.java" + }, + "line": 275 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", + "filename": "XRRenderer.java" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", + "filename": "ValidatePipe.java" + }, + "line": 160 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)", + "filename": "SunGraphics2D.java" + }, + "line": 2532 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)", + "filename": "RectanglePainter2D.java" + }, + "line": 211 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)", + "filename": "PaintUtil.java" + }, + "line": 402 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xde", + "lines": [ + { + "function": { + "name": "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)", + "filename": "RectanglePainter2D.java" + }, + "line": 210 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x40", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", + "filename": "RectanglePainter.java" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", + "filename": "RectanglePainter.java" + }, + "line": 21 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", + "filename": "RectanglePainter.java" + }, + "line": 18 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x42", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)", + "filename": "RectanglePainter.java" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x96", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)", + "filename": "ScrollBarPainter.java" + }, + "line": 253 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", + "filename": "ScrollBarPainter.java" + }, + "line": 216 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe9", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 150 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x46", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb$intellij_platform_ide(java.awt.Graphics2D, javax.swing.JComponent, com.intellij.ui.components.DefaultScrollbarUiInstalledState)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 119 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2bd", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultScrollBarUI.kt" + }, + "line": 318 + } + ], + "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": "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": "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x7a2d3a", + "lines": [ + { + "function": { + "name": "RegisterMap::RegisterMap(JavaThread*, RegisterMap::UpdateMap, RegisterMap::ProcessFrames, RegisterMap::WalkContinuation)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x680364", + "lines": [ + { + "function": { + "name": "vframeStream::vframeStream(JavaThread*, bool, 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": "0x9f701d", + "lines": [ + { + "function": { + "name": "JVM_GetStackAccessControlContext", + "filename": "/home/korniltsev/.local/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": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()", + "filename": "AccessController.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "java.security.AccessControlContext java.security.AccessController.getContext()", + "filename": "AccessController.java" + }, + "line": 1006 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 744 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "sun.java2d.loops.FontInfo sun.java2d.SunGraphics2D.getFontInfo()", + "filename": "SunGraphics2D.java" + }, + "line": 833 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)", + "filename": "GlyphListPipe.java" + }, + "line": 85 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x71", + "lines": [ + { + "function": { + "name": "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)", + "filename": "SunGraphics2D.java" + }, + "line": 3042 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x30", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)", + "filename": "SimpleTextFragment.java" + }, + "line": 46 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)", + "filename": "EditorPainter.java" + }, + "line": 659 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.util.ArrayList.forEach(java.util.function.Consumer)", + "filename": "ArrayList.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()", + "filename": "EditorPainter.java" + }, + "line": 659 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x85", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()", + "filename": "EditorPainter.java" + }, + "line": 199 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)", + "filename": "EditorPainter.java" + }, + "line": 86 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)", + "filename": "EditorView.java" + }, + "line": 283 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x30", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$49(java.awt.Graphics2D)", + "filename": "EditorImpl.java" + }, + "line": 2107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 258 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 272 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 258 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 853 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)", + "filename": "EditorImpl.java" + }, + "line": 2097 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)", + "filename": "EditorComponentImpl.java" + }, + "line": 275 + } + ], + "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": "0x21", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)", + "filename": "EditorComponentImpl.java" + }, + "line": 154 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x4d8baf", + "lines": [ + { + "function": { + "name": "syscall.Syscall6", + "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": "0x4d5b2f", + "lines": [ + { + "function": { + "name": "syscall.openat", + "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": "0x503f0a", + "lines": [ + { + "function": { + "name": "os.open", + "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": "0x504af1", + "lines": [ + { + "function": { + "name": "os.openFileNolog.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": "0x50490d", + "lines": [ + { + "function": { + "name": "os.openFileNolog", + "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": "0x502e9d", + "lines": [ + { + "function": { + "name": "os.OpenFile", + "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": "0x1b68e78", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).GetMappings", + "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": "0x1c00e10", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SynchronizeProcess", + "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": "0x1c07f24", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).processPIDEvents", + "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": "0x1c07d27", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartPIDEventProcessor.gowrap1", + "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": "0x4801c0", + "lines": [ + { + "function": { + "name": "runtime.goexit", + "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": "0x474ecd", + "lines": [ + { + "function": { + "name": "runtime.mapaccess2_fast64", + "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": "0x1b518cb", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile", + "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": "0x1b4fd87", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate", + "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": "0x1b6e464", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile", + "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": "0x1b6e2be", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.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": "0x1b6f81b", + "lines": [ + { + "function": { + "name": "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.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": "0x4801c0", + "lines": [ + { + "function": { + "name": "runtime.goexit", + "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": "0x0", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeRead()", + "filename": "AbstractChannelHandlerContext.java" + }, + "line": 827 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.read()", + "filename": "AbstractChannelHandlerContext.java" + }, + "line": 814 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.read()", + "filename": "DefaultChannelPipeline.java" + }, + "line": 1004 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.read()", + "filename": "AbstractChannel.java" + }, + "line": 290 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.readIfIsAutoRead()", + "filename": "DefaultChannelPipeline.java" + }, + "line": 1422 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)", + "filename": "DefaultChannelPipeline.java" + }, + "line": 1417 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()", + "filename": "AbstractChannelHandlerContext.java" + }, + "line": 482 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)", + "filename": "AbstractChannelHandlerContext.java" + }, + "line": 463 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelReadComplete()", + "filename": "DefaultChannelPipeline.java" + }, + "line": 925 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x10e", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()", + "filename": "AbstractEpollStreamChannel.java" + }, + "line": 820 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x87", + "lines": [ + { + "function": { + "name": "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)", + "filename": "EpollEventLoop.java" + }, + "line": 509 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x174", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()", + "filename": "EpollEventLoop.java" + }, + "line": 407 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", + "filename": "SingleThreadEventExecutor.java" + }, + "line": 997 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()", + "filename": "ThreadExecutorMap.java" + }, + "line": 74 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()", + "filename": "FastThreadLocalRunnable.java" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", + "filename": "Thread.java" + }, + "line": 1596 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void java.lang.Thread.run()", + "filename": "Thread.java" + }, + "line": 1583 + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1249eb4", + "lines": [ + { + "function": { + "name": "_raw_spin_unlock_irq" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x241291", + "lines": [ + { + "function": { + "name": "cgroup_rstat_flush" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4b8575", + "lines": [ + { + "function": { + "name": "flush_memcg_stats_dwork" + } + } + ], + "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": [ + 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": [ + 100000000 + ] + }, + { + "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": [ + 100000000 + ] + }, + { + "locations": [ + { + "address": "0x461a35", + "lines": [ + { + "function": { + "name": "build_detached_freelist" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x461cad", + "lines": [ + { + "function": { + "name": "kmem_cache_free_bulk.part.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x461fd2", + "lines": [ + { + "function": { + "name": "kmem_cache_free_bulk" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1dba61", + "lines": [ + { + "function": { + "name": "kvfree_rcu_bulk" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1dfddf", + "lines": [ + { + "function": { + "name": "kfree_rcu_monitor" + } + } + ], + "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": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x12406e0", + "lines": [ + { + "function": { + "name": "__schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124809b", + "lines": [ + { + "function": { + "name": "schedule_hrtimeout_range_clock" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1248152", + "lines": [ + { + "function": { + "name": "schedule_hrtimeout_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1247d14", + "lines": [ + { + "function": { + "name": "usleep_range_state" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16054b", + "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": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xa45571", + "lines": [ + { + "function": { + "name": "acpi_ns_search_one_scope" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa45a4c", + "lines": [ + { + "function": { + "name": "acpi_ns_search_and_enter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3dcba", + "lines": [ + { + "function": { + "name": "acpi_ns_lookup" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa4920e", + "lines": [ + { + "function": { + "name": "acpi_ps_get_next_namepath" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa49e21", + "lines": [ + { + "function": { + "name": "acpi_ps_get_arguments.constprop.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa4a430", + "lines": [ + { + "function": { + "name": "acpi_ps_parse_loop" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa4c0f5", + "lines": [ + { + "function": { + "name": "acpi_ps_parse_aml" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa4d341", + "lines": [ + { + "function": { + "name": "acpi_ps_execute_method" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa40084", + "lines": [ + { + "function": { + "name": "acpi_ns_evaluate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa47b61", + "lines": [ + { + "function": { + "name": "acpi_evaluate_object" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9ed06d", + "lines": [ + { + "function": { + "name": "acpi_evaluate_integer" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa73cdd", + "lines": [ + { + "function": { + "name": "acpi_thermal_get_temperature" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa73ed3", + "lines": [ + { + "function": { + "name": "thermal_get_temp" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe0d8a3", + "lines": [ + { + "function": { + "name": "__thermal_zone_get_temp" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe08587", + "lines": [ + { + "function": { + "name": "__thermal_zone_device_update.part.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe098d0", + "lines": [ + { + "function": { + "name": "thermal_zone_device_check" + } + } + ], + "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": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1249d1b", + "lines": [ + { + "function": { + "name": "_raw_spin_lock" + } + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x11e6f2", + "lines": [ + { + "function": { + "name": "set_placement_list" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1202b1", + "lines": [ + { + "function": { + "name": "nouveau_bo_placement_set" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228ac", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0xc1f33b", + "lines": [ + { + "function": { + "name": "dma_resv_iter_first" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x167ab8", + "lines": [ + { + "function": { + "name": "nouveau_fence_sync" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228de", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0xc1fed8", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x167b14", + "lines": [ + { + "function": { + "name": "nouveau_fence_sync" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228de", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x682f0", + "lines": [ + { + "function": { + "name": "_CallCallbacks", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x114b27", + "lines": [ + { + "function": { + "name": "XaceHookDispatch", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62b47", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x4e4db0", + "lines": [ + { + "function": { + "name": "vfs_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5cf8", + "lines": [ + { + "function": { + "name": "ksys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4e5d58", + "lines": [ + { + "function": { + "name": "__x64_sys_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x70af", + "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": "0x11ba99", + "lines": [ + { + "function": { + "name": "__GI___libc_read", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x1dfbb8", + "lines": [ + { + "function": { + "name": "AddClientOnOpenFD", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x1e2889", + "lines": [ + { + "function": { + "name": "OsCleanup", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x1db1f4", + "lines": [ + { + "function": { + "name": "WaitForSomething", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x627e9", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x1eb1cd", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x123db4", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x166a5a", + "lines": [ + { + "function": { + "name": "nouveau_dma_wait" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124942", + "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": "0x7e27b9600000", + "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": "0xa59b08", + "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": "0x16f176", + "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": "0xa65c", + "lines": [ + { + "function": { + "name": "glamor_destroy_pixmap", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0xd23a", + "lines": [ + { + "function": { + "name": "modesetting_drv.so 0xd23a" + } + } + ], + "mapping": { + "start": "0x6000", + "limit": "0x18000", + "offset": "0x7846dffc2000", + "filename": "modesetting_drv.so", + "build_id": "7db476841fbca1d8513fea7fef2b72c408a385b7" + } + }, + { + "address": "0x678cc", + "lines": [ + { + "function": { + "name": "BlockHandler", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x1db1bf", + "lines": [ + { + "function": { + "name": "WaitForSomething", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x627e9", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x26f09", + "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": "0x27145", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x166a5a", + "lines": [ + { + "function": { + "name": "nouveau_dma_wait" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124942", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0xd5bc8", + "lines": [ + { + "function": { + "name": "__virt_addr_valid" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d840b", + "lines": [ + { + "function": { + "name": "check_heap_object" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d8631", + "lines": [ + { + "function": { + "name": "__check_object_size.part.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d8742", + "lines": [ + { + "function": { + "name": "__check_object_size" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3f1e43", + "lines": [ + { + "function": { + "name": "vmemdup_user" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123f2c", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x1236dd", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x45e17d", + "lines": [ + { + "function": { + "name": "___slab_alloc" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4608a9", + "lines": [ + { + "function": { + "name": "kmalloc_trace" + } + } + ], + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x7e27b9600000", + "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": "0x74efc91", + "lines": [ + { + "function": { + "name": "libxul.so 0x74efc91" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74fe201", + "lines": [ + { + "function": { + "name": "libxul.so 0x74fe201" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x3160740", + "lines": [ + { + "function": { + "name": "libxul.so 0x3160740" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74fd034", + "lines": [ + { + "function": { + "name": "libxul.so 0x74fd034" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74c80f0", + "lines": [ + { + "function": { + "name": "libxul.so 0x74c80f0" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74bf9f6", + "lines": [ + { + "function": { + "name": "libxul.so 0x74bf9f6" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74bd239", + "lines": [ + { + "function": { + "name": "libxul.so 0x74bd239" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74bc0a6", + "lines": [ + { + "function": { + "name": "libxul.so 0x74bc0a6" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x4b111ef", + "lines": [ + { + "function": { + "name": "libxul.so 0x4b111ef" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x491d7cf", + "lines": [ + { + "function": { + "name": "libxul.so 0x491d7cf" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x39892a2", + "lines": [ + { + "function": { + "name": "libxul.so 0x39892a2" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x3989185", + "lines": [ + { + "function": { + "name": "libxul.so 0x3989185" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2b01713", + "lines": [ + { + "function": { + "name": "libxul.so 0x2b01713" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5e5a4", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5e5a4" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2afb213", + "lines": [ + { + "function": { + "name": "libxul.so 0x2afb213" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2afaf19", + "lines": [ + { + "function": { + "name": "libxul.so 0x2afaf19" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2aff749", + "lines": [ + { + "function": { + "name": "libxul.so 0x2aff749" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2aff6b9", + "lines": [ + { + "function": { + "name": "libxul.so 0x2aff6b9" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x29ce05f", + "lines": [ + { + "function": { + "name": "libxul.so 0x29ce05f" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x53ff6", + "lines": [ + { + "function": { + "name": "firefox-bin 0x53ff6" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x626f0e70a000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a1c9" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "libc.so.6 0x2a28a" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xa43d6", + "lines": [ + { + "function": { + "name": "firefox-bin 0xa43d6" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x626f0e70a000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x74f0746", + "lines": [ + { + "function": { + "name": "libxul.so 0x74f0746" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x74fe201", + "lines": [ + { + "function": { + "name": "libxul.so 0x74fe201" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x3160740", + "lines": [ + { + "function": { + "name": "libxul.so 0x3160740" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x316019e", + "lines": [ + { + "function": { + "name": "libxul.so 0x316019e" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x315f14e", + "lines": [ + { + "function": { + "name": "libxul.so 0x315f14e" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x197a1", + "lines": [ + { + "function": { + "name": "libnspr4.so 0x197a1" + } + } + ], + "mapping": { + "start": "0x12000", + "limit": "0x35000", + "offset": "0x72bed80b2000", + "filename": "libnspr4.so", + "build_id": "caa869f624148b1ec093de72d7992781a5411334" + } + }, + { + "address": "0x5dd1f", + "lines": [ + { + "function": { + "name": "firefox-bin 0x5dd1f" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x626f0e70a000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129a33", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129a33" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x11b2b3c", + "lines": [ + { + "function": { + "name": "__get_user_8" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b53d8", + "lines": [ + { + "function": { + "name": "rseq_ip_fixup" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b559a", + "lines": [ + { + "function": { + "name": "__rseq_handle_notify_resume" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1230cc8", + "lines": [ + { + "function": { + "name": "syscall_exit_to_user_mode" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228feb", + "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": "libc.so.6 0x98d60" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9bc7d" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x93298", + "lines": [ + { + "function": { + "name": "firefox-bin 0x93298" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x626f0e70a000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x2b07e36", + "lines": [ + { + "function": { + "name": "libxul.so 0x2b07e36" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5ecf8", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5ecf8" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a5d620", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a5d620" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x2a83c8d", + "lines": [ + { + "function": { + "name": "libxul.so 0x2a83c8d" + } + } + ], + "mapping": { + "start": "0x2995000", + "limit": "0x8ddb000", + "offset": "0x72becba00000", + "filename": "libxul.so", + "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" + } + }, + { + "address": "0x197a1", + "lines": [ + { + "function": { + "name": "libnspr4.so 0x197a1" + } + } + ], + "mapping": { + "start": "0x12000", + "limit": "0x35000", + "offset": "0x72bed80b2000", + "filename": "libnspr4.so", + "build_id": "caa869f624148b1ec093de72d7992781a5411334" + } + }, + { + "address": "0x5dd1f", + "lines": [ + { + "function": { + "name": "firefox-bin 0x5dd1f" + } + } + ], + "mapping": { + "start": "0x23000", + "limit": "0xdc000", + "offset": "0x626f0e70a000", + "filename": "firefox-bin", + "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "libc.so.6 0x9ca93" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "libc.so.6 0x129c3b" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7e27b9600000", + "filename": "libc.so.6", + "build_id": "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 index 41c8e60050e7bc3a29141fd5398954ae83f7c378..ccf6a68454d47e4997a1c39fee7e04cd878bdef7 100644 GIT binary patch literal 95526 zcmeEv2b>&7l{X!yrYCHBvGGU_2-{#R@M>}p;V{8qI1Ugwo#^T5v4y2wu`Ago+_B0z z=bUrSIp>^n&N=7&{a^L$O7fb+{X6&$7Aw5&s_L$;`0}gK2A@{6KWKi<^;S_ygMvDl zd`T06nqHQ!pRZ_A&6*+Y70u0`C^YI>`Oj)q-!3XHtW&o^iS^E_=~ygS$0#apSW>^Z z$aqhCO3N#;ir=YYS_SV|#U*u$3iCznW7?CNyQrk#ZL7G@s+;f9lz2h1AecY+l%jns zzb~N71YOMkg#O8@g7AX;-1DET7IwE)&|&o8Nll+usSh+jVMt)&AJitXS8mSbFi_zZ-TR zSbk&jv|PjgR95gG-wV5&@9ei@R<3!?1>I-A^8Fu#-JRz5ZDPMtg>@11s=O6;%e$Vt zxoA3nsR|n>=sGX5M`+aD?Pu) zsvA(>N4LL`>-%?DOR+-L@mr0z^ch31Hk~nWFCT@{8^i5!Y_@mNVcwTDgI8YSEx$7S z#>N@^J1?^y6)Vf1a=O>L$y7dWO|xVCCcg?BF6zP~4H|K?(c-dU7$MqYms=>y7nkOW zUS?B2p!#zww>RUp_UPBEb6FirME%)EM)}CHQFb@-pJxXu*5SUh<;W0wmAuT(S1iwO zzF=+J(bR>-t;SC)>%u)zf9}z5tY6vBE();TlKvDGNiV+l`>=cY<*B(9U4>1MbmNhJ zuUORdp8Zmgb(D2K6+N;FpBZ>|=7Hh#;dvKUj^z`vd|8`W_GqVAf4Rccz0~na_x>a4 zjdmB;Y#K*5yRY7!IG%2LtUGmMCf#5Z##Q{7d-#JPb9paOKBr>U?w+U4bso##f0?bW zSe`#(WcMR{)y$jR^n$$;s<2(M9(ZJwjt$*w&sP4+?9vC+vE*#u%lsR|PpvPt8~ZFP zRdf&4;d*X@Fj1H!gx#BWEzHfsv#gC`V~K~Q%@1r_Z=;YP>#S55qh~JPxw@C{tVv5o z44*_j>b7cjPy1_C*dXOG4AOef;->bf1limVsI1@UWs7->+fE+Rh>!DucKf>8sN-d} zMyW8V`4f)JY0tlUX-DTAUI?&VivDrxqm5*Gb#2_o#u(4Dvx>bR9$6RePOEo~E}M#5 z6&sbmV_e4$d;}H^Ji6aT0x8x~tuPcX-PqcAI$thJj?SOLC$DqY4!w9cmfqgBx~vU7 zD!%G2U9@+Xz2BZ^!#|*W%DsU->`%YUrd2G@-?w(?4ZgOoU%t`C-hEZsQq@L}%5#eZ z!c_aNEz3=16}CTDmP7hIn{BqY1klM%^|3iS_F(x4djWP6Sr=E?$O0EP6E_SVd4Yd+ zLi?^Q_!zC2vcvwy(usG+@xf@)YlA)K12zwz$|t|`uBKP`@C=x}WiTK4^&QXm;`?jq z;a!vX&Ag4vR`Hv?GiD#+H|@@K>cq#g~iTGUzFJVi(M60+`I)hm)o-$WE)%+7Sb~vE}odr zM{`oAMfTY5zBo4bu^`+30dFkYx@9|mW7N%M_xP~)?sBpD>>PqR=c=%A+*>-2Y0e+S zjNfrRHse!f+{j_@Dy%zu3^A|ja%GwQ*2`=PtI+cNQ*9^h<}=!1Q_ma${~TNVSRK#w zJAU&n$I}BxUa+bE{>{^Fm(lbCk3H-zZQpKm*~YkA@q_LT-RI=EmFHL+xBfJ3d$v+o zC9D?K0Jn|oG&Q$xs<6Rs{YxBs+AP7rL%Z!+#{e8~=Xz-uUES9@_tBTxU3bM^HXAj3 zBFAto&)z#=qq-n#qg5E>XO4HcJDg8TKEQhq zcG${y%ZAzsYyX z{-Isw^Obpc?zr5Lr`S}jLKk0JxbV&yUPtTAGfwe3j?UP8kk`@d=zu{s)vUsnX!=|B zm~vid(%s`Zid2P-@jSLCj;-EVKHMuj_6KvwXGZHrZEc+O9k$(5VHD%1c1`NWJ9f53 z<2xL2tR8>KUP9w~pSG7!n-)h-@V-Fc-wB`J2)Q*nSB_i43^SGIKN=rz2uJ?mPw z<~=;z?7_COZF?!##77Cmq`@be@HaqjOT87wEPuz0-YxkAEjoBH$A~`9I(RE|$i3~> zr5W~2R$=|T`iqaO%9*?O=SJ{(wy@$i+zUr7&T&Q&w!vG*G6NaEv}(_U9UK==-uIwC zUv$eyHEzs1*1P%eTl@z2Xx9f+dg{dKa(s321KN9e+wqlr>hqst*S)$sx5+w*_9kmH zWmx$pdysoQ$8c`gaWz+SkhSww7_w(Nbl-i9FZaeB56*J?tX)A<+yF|T@@>I&)na3LK$kETe19^+mjcZ=Y!LvSMz~<4(86f-@A-7uklq_ zFz#Km`;FrZ26$qpPk-`}$vWAm+a7yCfV233SDSB~niH~~XSXUg#yx-Pwhm<^q@`ca z*j4kLv}{z<@nz`wtluWOxiKBFrfE5U|G@uPgO1I(VRI-|rRst}KqMd$kO?RRR01vn zjDVYfM!-YBOTb6KPauzgPT&aw`2;>r;7I~c5%>gwr>h27>A{hLURt`G1xiax=igcS z$!bb8Vc%C{u;_xtBcP(ORv4a3w6D8;h#{r>B0PSPgiqQ7eDhd2ReGs_3I|f594KAbs`+^ox~q#df>oblrC-tU9CsvQen{X)1b$55Cj@><;AaGWPT&^=eo5e0 z1b$86KMB+(@EZaKfiwY=K!$)tAWPs)0&fwhL*Tar-X>6&Ks^G51d0gMC-6H0#RN(S zG$im2fp-b~fxsUL{E5JS5%_Ncf37N57fS_#jW}$~VG|CUa@dT+<{Y-*uqB7BIBd;f z8xGrY*p9>Y9CqNaBZr+h?95>o4!d&Ljl=F7_TaE5hrKxL&0!x7`*PTi!~Pr&;BX*^ zgE$<_;SdgoayX2`;T(?Oa3qJLI2_I47!Jn@Rr6WtLYnr41N_ze)#Y)*cwRD@!zmn2 za{M;Y;bsoEaJZGjZ5(dra0iDwIo!qJZVvZwxR=9y9Pa1v0EY)TJjCH)4v%nnl*3~j z9_R1`hbK8a#o=iV&v1B_!*d*-=kNlD7dgDd;bji5aCnu&YaCwZ@CJuBIlRT;Z4U2n zc$dR_9Ny>f0f(g`-vb;r=CBEeO*w4FVRH^!aM+T=RvfnGunmW8Ic&#ady&tu3n~F>4>ye@d@E0H$(!!MT@`dxw;$H^&*R}I^iNUJkDIL+50h{O=gR-6e zI5<9qJ*l5k?evp)U13k@cN9DQ6x4YN`-Fa;r$3InBZC{SJ%6b0v;utdY5Sq4^{zdZ z$w&vP3juueX?^!9o~}}sp0(x{l~*lGw?Dm_($AEodz|0zLi*XV^r|z9RHQKg0gPTi z@6zpMB%d!!&YAgbBtL0CT}7Wdud^HJYSo2L;p9XYTZdH-|Oj+_aFtNxm6;xGK{bDmJ{jA-vs``lT z-$3$}vgC^G0VJ!JB{%J*iNd7Yom#a-L-O-w$=1s#`D)q2T~B-*$pSn1jNWQLb+JZS za@pZWl2!E!eZP-VtVOE1sy=1g-{iYAmTP(rpqUEU9e!5dz4hlvhRc$RJHLS>R=GXW zWA2Wkd5e~%uQVP_=~&t03zxl)WW21n^TmZUF$uf4ihdaAUu4O$;{5|!Q!i6x=?RTX zX^3jtj|cR#edyy~uzUTS{s1UdWM3>xPB=()f5}chub&5j71@`|lCwcqA4&EBi4@tt zQK=txi`fJFDoB5&EPZ3fQYwGVe)}1H_zf!lYFYAT59(zuSyi8Vz7~>SvrDV$ohST# zCZ`(Tn_t)4ah&F7pMt(rVc*bC<@WXqy!>_jL@xazu#UpMskhGU^_L)EDC}E$M~+AQ z?9(vhDC~{$=Rc!Ik^Z(miDNB4tTqbL-_hrK?QQ>Ahyn`xcYOj+|AXR&=2v>t`u%R% z8rpcBr~jiYeR1!4n#%8$rEhlGKiV^zjX;0w`@<_s`Mr<5qA%#k@Ys*bigvECi#}+Bo@o6u zJo*#6J+pOz(OUHBoAKPyX4x<|>Mmo@%xgczw=)24zY5ZN!NYD$lr#nZnm zOK)Dl)4wYF^r5To;PGFVB@f(r7s>xDOa2WTcCcMXLMpY(8q%i`Cmz2kOK)z>(?(gk z>+MeTeA;fxv-+C<`|=%L8~USjQ*aD7C#Sb zufi<7Qx0uDp<77j>j!h`O38v9zFf)C?3v0;F3g=C4w5DR~_`9Mm)S(fg1 z@E#FT$PodER+8F6EK3Y3Muq)OKb(6wu6yxtvHfs@ z^E)MaH)hwAgwQ3j29)rz6bfb5P=|;@U#ZE<-mzc&g8m!S`mSD@+o50NjL~~~SKcQd z`x3q)v)}9BQ>m&i^Zot@JtzJA8;sZr`(ycMzrw5jlU?;|yiNb5_y3?aeO0fHdjDIm zXFvNj{m-cA&$(yw*w^)MRaIH3pzq_o^@6plR#jq+cq?`Gy8b{yd1FCu!x^|duy#K{ zMiW8bz#qv2Z}%cHnnGWb>)9K;t<40zq5a8kqpb>qSIh70^mlZcoEC!4=hhGAE+6TZ zf(|n@jpecb&<$j?7WCG9&*ZW1!OEku zHiCX4hhv_EiI|iW*K;`LpF&A7s4`Q?JaG7ZW`l8-SX-c)PhlFX=sOoc86dHCJi`y3 zb=9eFA>E#*iHB|U5!1?^(f@Ch2UYZ$mntz8lbXP&&jyrdv}n_qG6t4sY@Eb12Jwu)p;BIB z-^X_bqgvu6egKuG%7zF!5uJ~{ptD*!YG@60)Oo&8dWVNxYe@y+}ZKl_#b6|`!+pg&7B`q{6!si>rR5nx4cW@C+XK(7TOR8)Z z27~i&I(tiRDkEpMpfBYNTpp{#hi8tUU&%G)O&tb7{?fS|)Aw6Q9x9s)rZ4xQxAj+$ z0f+e&Ft1P#AyZQG=L>pApWT*vdI2&P2>K1Kk=9uu1RvzUU_CRJQ>6DMp=ptz_saFC zKD68_TP)}+HM`#5>0_wVORxZPUnJ&cSh zTO;U=@~9F&`vbQCAZWm{(|_dB=eqLrpY+dQe%A~7+jjYXaSi^4^78+NpsTQrf)2wR zP41ud8u-AbvgwC|3DzHSHVb+?-Uc1gC|?m+l6jdX6~1!Y-XjK zvMH5ak#(jruSt@yrrsf|T)7$UBlib5qx`+xAFAjhD)WBPNs&LH$8>m2v+W>D0WgV_ zGkqH6?0A^d`aYa!Bt~3)?wL#77E#WwhdJ#!^PJrebNcP$Z|!-QbF=SmxLUKl4|6*9 zErs7T+xIYM=>0~Nv;Sevh}%5pz{8w{O~A`b?BK(kb^YJ~D6vBibJk4SO5ZyCFsH?x zEtGTQVb0N&dno7V!<_lcc+RnhIejkjoZ}C39{V~eNsd-#H5bvrdyC8@}#me~37 z^t@T$MEU|x(}p}r%At$p$zd-dd8z#Atq4hw*yZx#t^fBPNQ8HqG+u;A9Y!h~TV(pD zbDi5!nMng}%$8Rxxrt|HWk;u z@R-O$&K>vz<#O8EHQyEVe*9Zcz&NiXn*6&_hCBV?>zw%qkfg1 zdLZaMa#eK{5GexhBvC(>Q|fmTxN}h>QUA8BJ?>0jQ&?kBN8kpjr~e5Z$e-2sog*Xa zM@|d>2oVqes^KUtr*|(8NAV#%<@(`YLRNW=BpE*}+I!a$d)WlYf+7cS64mUX*rilf zRbP9l3d)-DGD6xAFPKwR^) z`nFMoUs{x>R~@BvOP(g#U`6wPNn!mTAi|2KYs8%Q*@gb;gq*dNor4@+nL9{pa786E zbUmwgy-o_rR^>Qu|3|@0|2U3mbB=Qg)w-M_&Aj%}Y<*IHe+cllAr!Ix)iQ1JhAtFI z`87NFj6V1b1r63HOP)RXNb>I)u05qPTUbe@^?0oRv-*`Yv^d+8FV?dk**eI{^&fL} zuAG4rj#yhhSwz{|wB+W^cI6q9+VYI{U6 z0>S^4F{@Q&Mlc>YTkD-}&A|y10R#ym(P-&{hlz#lcOrZ+S2A_rBPACbO@8>;^(zw| zCT0zNBr&|vBZ&(`mcmyzSKEdOD{ufwE-`r6VR-%K63vD@lISviA^d-HB}3Qrc$nyN zbpFFculS`M-m4XUU`yg)8JCBUw^>w-8gLp2a`}X-QrM^@+Y>pfIn;i zZlP85iDP)IPba<$2`yjWhx5c(=koN0lawY8YTG6~d>+o;f-ie{M!(H1DWh9?#;(IW zqdU(a!FeN2xcZPMDfrRS{RcmT`g-7XYU0y+uSI9cL+sw&R(_~YhN*^J$(W$@;Z*wQdvJ79+Z2ikAPE6ybsk)*!%JSTgGUC6I{C}fxBAl|;wl>?>f3YG3=s5}kTY1+SM#V? z9ggyF&4uT>sGt3WtxX*y@Yu|uIAGhZX0V{g@yIYypTzy2b@Fq67dbeCyGhO$7k=(( z?Ki8{GY(i>w0_}xove69jGx|5}FLaqXMxu;OU#GGE(M_%qY z>5omyJq{;#3M8AHdmKLQZ{qPOVwqPmoZQJb9*2hif_qy2rR2N787 z)}wave|7p29Og-bHa*w4f3@?Ke25Rg*v=4j9JfTP7tsNCA%s!Tl@qMyCNoGp{O6qS*a0sl|;@WQD4tdZyp6+eF_+Sv8eyd z#^8v%B4amxv}0s06bx}!PaG(t%c&SGhv=(6;h8O>KAL~*2_An% z#{R7$tnhZ%{(2Z5LbP7PJKIG4UT%OYehNWbE`T(kI*Rq7wZDn$yWiSIjy^XA{~98S_6^}6;t=6(<6-gcXr zc>{;gv%Tf%R-4{KnhxT!%dh_Z+-MF}HgEd&|Lmc(Z7Q>e0d1}xm05bB4)&=`d&+}& zKp><2Kt`l&-C=7_59E?NZSCnnp490K5;`@ak}79E((e5g?cV;%j=J7|KK(z)@z)b7 z`?znZTo@Im-sSD*)+F}suh@P2H+jSey#DYGZV}cHY^@KP0L4$vnmS-MPKUKksQB%Q zvfC+B5gI`ZBz~SoWrsw)WA3!0N_ysHqsq)zkRp5T_OlG6n2saPoq0I|zXOCY_VSG0 zV|d2V@{E;M$So5ADheBZ|mDniTaS7`@;d-{o%A|pQGnvI&9bUdr7%t z_WmV)FR9BvyFh-UGSd|uN2l<^56{55#7#+gI68%&>`K`yPv8s@y&17CS4DjVxAf%UR0Mu#;5AXlZ_dz%&fq6H@yK?Y5n>KYcUzzXxWC<~cr`jeyuuiQUdUaFI-l2xSGwl*_p!;P+Tn zcDL*m9S0R<7fi>_y7V~;UUGpt5YQIYsh(k9_8w(XcfC=f2&l&iHvrS z-fztM$SU^HNthpZ_1I*vwy)eOT@^JACjtEzu;MY_;ViC6B2mDj%d zwXc8U^>2RbjcKmN&2fA;fV{PI`7{?FRKG16wn%D(wlo!`D) zw_agU{ofUrG-&wFyYKz}4}bjAfBpBLONB;4W1)%ARA?qN7g`7{g;qjqp^ea1XeYE6 zItU$wPC{p)i_lf*CUh5i2t9>fLT{mu&{yau^cMyQ1BF4tU}1?VpdVwNAWRe{36q5>!c<|JFkP4-%oJt`vxParTw$ItUsxb46c!2e6Uy{c$@HVh zD}_}8{ha+;VV$sE*dS~aHVK=BEy7k|o3LHjA?y@(3A=?o!d_vYuwOVJ925=-hlL}; zQQ??yTsR?|6ix}Jg)_og;hb<@xFB20&h3Acqi!d>B>a9?;J zl!}eS#$pq(sn|?xF18R`imk-fVjHoo*iLLO(og?(5<81s#I9mDvAftq>?!sVdy9R< zzG6SIzc@e~C=L<_i$lbr;xKWzI6@pLjuJA5;u!m z#I52sal5!f+$ru7cZ++(z2ZJ`zj#1AC>|0Ii$}zx;xX~KctSiWo)S-sXT-DOIq|%B zLA)ql5-*Ea#H->p@w#|JyeZxiZ;N-tyW&0ZzW6{al^RKnr6y8SshQMVY9Y0hT1l;? zHd0%uoz!0HAa#^FNu8xGQdg;))LrT!^^|%^y`?@TKS|P2JR!OU+HPTvXowQ!sAZ?U3Nt>lD(pG7kv|ZXE?UZ&&yQMwSUTL4S zUpgQilnzOUr6bZ&>6mm}Iw75uPD!VwGtybo5n8@a9APHr!EkUPqqoqvX-@7kT=Sk@nfN@t~u(pBlEbXR&PJ(XTcZ>5jYSLvtpR|Y5p zl|jm2Wr#9V8Kw+ZMkphdQOam#j51akr;Jx7C=-=Q%4B7VGF6$TOjl+oGnHA&Y-Nrz zSDB~GR~9G>l|{;8Wr?y>S*9#kRwyf#Rmy5*jj~o*r>s{tC>xbc%4TJYvQ^opY*%(D zJC$9^Ze@?MSJ|iRR}Lr#l|#y5<%n`rIi?&}PADgpQ_5-OjB-{vr<_+VC>NDW%4Ow> za#gveTvu)=HL7KnIz%0+4pWD#Bh-=VD0Q?t zMjfk;Q^%_l)QRdOb+S4|ovKb#r>is6nd&TcwmL_htIkvBs|(bH>LPWqxoAQ zE7XLK;8 zdPF^{9#fC2C)AVbDfP5^Mm?*ZQ_rgx)QjpR^|E?Jy{cYQud6rIo9Zp~wt7dstKL)Z zs}IytS0h(rR})uLS2I_0R|{85S1VU*R~uJbS36gGR|i)|S0`6zR~J`TS2tI8R}WWD zS1(s@S07hjS3g&O*8tZ**C5wm*AUlG*D%*`*9g~0*C^L$*BIAW*ErXB*96x@*Cf|u z*A&-O*EH93*9_N8*DTj;*BsYe*F4vJ*8| z*9q52*D2R&*BRGY*E!dD*9F%_*Cp3w*A>@Q*EQF5*A3TA*Dcp=*B#eg*FD#L*8^86 zYs4C}CafuI#+tJhtR-v3TC+B+Eo;Zxvkt5y>%=;o5UuwDQqg6#-_6wY$lt{>#?AwIPO~%YEIY@}vkUAZyTmTDE9@$}#;&s) z>?XU#ZnHb=F1yF>vj?oy-N@b8-NfD0-OSzG-NN0{-OAnC-NxP4-Okea3y(ea?N}eZhUveaU^!@|oI%{3Du39&( zyVgVNsrAx&Ykjo7T0gD7Hb5Jw4blc{L$smVFm1RtLK~@#(nf1zw6WSaZM-%?o2X6F zCTml)soFGcx;8_bsm;=6Yjd=@+B|K(wm@5`Ez%ZiOSGlhGHtoGLR+b=(pGD0w6)qg zZN0WZ+o)~QHfvk7t=cwiyS78ysqNBsYkRc4+CFW+c0fC*9nubKN3^5bG3~f^LOZFQ z(oSn1jPs25Oz=$fO!7?jOz}+hO!G|l%<#T=QJ_-0qoqU~rU3^`A-F)4BJ$yZVy?niWeSCd={e1m>1AGI0gM5R1 zLwrMh!+gViBYY!$qkN-%V|-(M<9y?N6MPeWlYEnXQ+!i>(|pr?Gki0BvwX9Cb9{4s z^L+Dt3w#TGi+qcHOMFXx%Y4gyD|{<`t9+|{YkX^c>wN2d8+;pmn|zynTYOu6+kD%7 zJA6BRyL`KSdwhF+`+WO-2Yd&8hkS>9M|?+p$9%_qCwwP;r+lYG~H+(mJw|uvKcYJq!_k8z#4}7KmM*hbBCjO@WX8z{>7XFt0R{qxh zHvYE$cK-JM4*rh*PX5mRF8;3mZvO869{!&GUjE+xKK{P`e*XUc0sevhLH@!1A^xHM zVgBL%5&n_>QU1~XG5)dsasKiC3I2)xN&dqgYyRv08~&UATmIYrJN~==d;a_W2maE$MtP0%n&dUjYnInMuSH(VyjFRw^V;OK z&1;v}KCeSw$GlE?o%6yU3*$$Oq`({r*Y;vyoy?3;VVR`>6}CbO{1lhNl!u?&5s{MFHv+HY{gqN+71h6A3|yi5E(>&(*=GaKBGp6; zG^N_^h=CX`JMGI{iKp%gxZvmD=z)7e;48Rv6ZvJRojPTwcG;H$_NBWR_%Z5#3y`9x z0nP{jy$DPuuuKf&r+#rWhzb`=sCKm&sE&7D0Ytcuz%M-|epxH<>V5>Mz$Ae@(zXZY zP@`7UBO?1VsyQm)=99RYCjo4w?=+W?^>N%xqz^ucn=ACvRjN?IuSy2q#wUNv;Wq={ zLe@@!Uz&-5cTw^VAf_kxsdo04M@WH@G@46 z;ESkrk{GCmL|s4$KMDr0oci67T33kw?;&xN8r_@T`BLD^cxS$Zi-Zs$fKl||8@Opf z4|Sw>$I;ya%KsH^R#4Ve0@vvImX!ZJN{ML8dLhu08d@p@8VRU*G)F0*&F_oRk)zw$vkB{WvQ`rP5Fp(Z#mP_x? zJyvShI)!J;tXkkx_*8$1U+xS1(%!yIvNN|)ihi6dFpUN}%9nT_TIm$Vk1=}<|6fI- z6Ak5b8p_Kw&b#SuGClAe+;pbV{de4)rl)RDSr>Y01Kka#yqT2jOW+{A^nKh+q5Nai zi?dQ-3tczou3M$R3hMlFfvyU|^8@wKxFSFmr$q$1QRV_6@O31c3V~*n9ANkSj2Jje zGrUHmY?;LaFQTxOh>Of#;E8jTP+2!A(49UyI(NM;25!+uw@LQ(reI$ON`XPN8yiW1 zKj1P>zy-fj4Tzu9l>!s!o$&%)6}HrVX1f&lPdxK$K!q){6F&&lLShId6r6~_>pEvY zzDeYnt?7c_%##Ac=zELo_iFR9?b!0fdJ|+090^TEKfWQNFi^5Eh3737br%m zac^D3yl%5mW4>92vXx6t8xJ_Uat&rn%H;Wd>SOVuLZ##d4?uJv| zTAI}JQeYMh_e_DV3fmzCf=JF50&^%inUXTA!84EZXXvO2``L>k&%PlBZc25iJb@Wzu%4xJTqc!NDFtJrsE#SU{gYEC!BH=_#A?+#$-N z;1?+PWg$@|pj9Ezk;bG8r&%x=OMy1jvDW;mz@Z~h6)znX`DHp?WLAa4H+fbIJL{`F z(L=%oVVY849aVBr3LK)fxLE+zRA8vaMP`5EiE9$SjJETB!AnAcFy5Ld1SV0FE^(qP zvl5i4IIJQtmU4UKaPM`=PM3;-M%3B$QecCG+MnSh_@WfJL@hX$V*n=btIRTiB%VnC zDy*HzFZb=sUcv`5`z4@)-%{bo;ert8OyBI3yS5Z5Ewh&bp9Xv`@I1;6OMxTwrNKgA z2$g*%@G??urNClp)gsZp?#Nv)^Q+9PKo+I_g}?xMr$L}0KDtuC1wZ{L1*TGkErdWz zn&7T9)w^jJFWOW)!b$i(T2u7HgMro5#8skw?aQy|oQ;F~(aW1?#q6fLF7)UrA#j?m z`-Q*(x^9&0>z=Z!7}!f|`D=U(mWY9+w1^suJh@j2?4!1=Z>{uYJu z21ZdWBXie*BHCW_87;qlaZ$ETU8^8lY}B&~8vMS#m9J>hZ{Mj`^9}7q6q;5^NrCmA zWj1VJr14z3VV$~}+I2DoZ#AgI$ zI%S0%RFyW&Ow>%IvQ{(`GmS(l8jVEb$!stc${L|~+(A{5Xf_i{rh=JNHl7N{B5^Zm zm{uYYO2&i9P%Pr0s)S`F!ql^HI+F>9!ogrPma;NgBbLcTlZKP3;+a&&O2*>pR3>Ct z*?8QD8qv6wh@@hfNIYgZXjRyZnn4V4I2{Rv)1g#091cf}NH!7}I3kz_2L3_7SP9m!aR5ix>6^e>XhMw8)eG#w9TGl^i*Oj!=9 zvJ$C`fp^SM%8J4qmWsqf$%tuYqp?UTo^i6Ste}B*V0FgKbTFDuro)+3ESU|*(c^G3 znsCsnbR-gum`2h{VNIoi*-Q+zT8VfhX=LNcu#;AWQYj;wv?5qpA=5y!V$onCWX90F zNF)b zPG%z(P)jh2j%K6bpp#aGvJumYp>s(y5|5{%Mlc=<0ih<+v4jyboh(t*VMKuQtb~<` zXJS?+mWn6SDT8oDA`x?f8PKSp5lf{~*mRjtBpyzsl96ZvV;;%?D`p*xRV);V0c}R& z=_IBeC@LE^LRQcUn{goew3Ai^ANdnYB-4*1aU06ieEtI|8`IQ6qd}c_teW4|KKVZp zw>JwL=2zD~8_xn)XR?u4D3;B}!l6*wh-Qpf7U<0grLb4cXgrvTINGPNY|2Wc6Twg_ zod80MMPiv)$V{Ze7S$B`ur15Pqv=p03woJIrL1@|Vx7hZCle$z&qocs7)cMbnXBrsjM>^O{A44U9U4R&ha{O#V1Q8!gmmSb|hZ z-8!blZ(j{z1|CU&#ZFtr@6Z!Q{rb5w+`al+t3kRL)s_6}y>RBuqPj+5hVGJ?a3qn; zX6ZhGZ9&&)EEeWvAu~-^BZ(cBOlLD@I`pcA?uLW0R3wv5L?hu?8Wb@R&tx&MM5z-6 zC1z25t7bLL)8MUQ%g7WIg4xM`Ld*NQl{FgHZSeIvCH0L4=36yQ?dcC#7ASiw|6AJY zHQp+!XVrMSsJO6B-3BGrJ2eXG7MVuf8YOQT#a4}PTMfR-J5%FFMMZVfMek8(OKRBN zs*$c!n7gg{am`cqk@^@#Ik0q}_?H*#+g5R*RoB5bOBq%iBr_2WVs&8df+;JV1}ce% z%&-+oXYu{Vr%}>`8uQmjBqv^4`qNy!kJ*i5rQ+UL@=B(fweQyu$4@KWMxr(ItH|oh=t=dKmWcy zKC4x&QS$qe23Eb?@+-+?aBHv1nom96c~z5tR#g0E%^H7sH9V>1W3?C8s9Psp<2^iE zgTIjf_{>Uy+xZ`IjKDtw1;oI;S($JuN~2?D%|tj0{wI-21he2*up^vsnz0a&LJ$L# z&VZkeCo-ry63qnDnQ+n!C!LTcV3cGQ++jEs!<%Rt8fiv>w1e>|;fxR2$p}zZDiw}G zFaUXqq>^BTK@8&HRiY;N&0x|3!$#TwUlBKhSp7h#vDAlb z8Q1_U93uphgkGYV$%K&&#>_0ZIv^L|`dB=hcE+znBMEFfuy^1nVoA#gqf&4NsaOzr zDU<$?Ei)1^!;ELZWe{>pM8XLJ991Z8qRE*U<}(&bB%*OA3&XUGRM5;?V8-KND{RFx z5iE{GC=xM3AaPEr${1kEv+-C0azZAWGSf*5Yb2dYS_#82Q%=Ya1UxX$i75Vp^D#pP zwzp{}GMRKX5kZjy3<&l)nFvGPBQYo%Hw^Hdv1k+mD%NW-?Wk42o@N?6Ydn-lV`(Np zX(1AsX<(i>ke7p2C9)x`vXB87$DU5dv5}HSFqTAfL8TmV=tdOWc)~Od!^jfqgUcY~ zQ^N{^`A;RCa8k(_nvn`cAe&{;xJVESJxtOv*eYyJCu5a~p*xXC2(oQ77)+T~I$}cX z3&+CXmLQ)v7%T8uz+O=(0L)-G5eiztcqW*P#X|8Yr1xwLnv2KCl~>b#RHvR*{DX#8 z!w<{cMS|E)X$$?1rGXk#nN%ofLKK8(5sgBG1xJ<$f~GiVcF0Jili@_h2pN!W5)l%8 z3@jSdWk4J-KIEPcTUj$62PVV-SP@8GKp+uF`H6HW6U&&%P%s=%gXeS7GDxP73LwVC zVvx?`3GCCT5f4#Ev(ZGbX1(_j%wKE2e4JoricD|=ui~YMkxC?>xd>rn8fMzGtf(1| zTggZU;+bW|tu%BZNwBlPsRq)9Wk6!fT4{)C@f<7mjsM{#n@#;t zFa1yKTdZcP;*fP}4AcOd=76dJLLBh!Fm9m`-7#|`KovQfaKX~clDBN0e*jwog#90fH`grZ^71RIr&KtEBB9TZE@&Z%^CU6YI$7nJHJ!0I5g~A}E z4ysD0!I&HIG*D{_bS?>;mx80(07Ax2TO)QbcB_o zS9723s2CT;~CEm6q7v7{MKLp>c$rL9oHg6a=*2g!k0bq6yD zWn>(>qhur;2GYigh=FZ~YQZ4E0aVdJRneG1!=0d7qS%X2Dw<{rny6q9iu9P1R%M{( zfl&aoFKK{;CF1F5IF^KN4FAwSCsid=Af&`AfeI$T@PpBSsw4`fVl)y@CY|Wuvt}@x zuuPx=(EJosZQy;NgUuL`L>$HoN2@(-;Uy!6k+GtN1?q~5%}6kUJx#)`gJDlbvaxs! zI-HOdipGh3!pgA1kua(Yg4=gcRhrf$5FcI)LkNTpJppAfSR-ul46F?fsxpCz!$FAu z!8D+eNx)DL3|dL>t|5p;PLK=?B~}WGu8YysDfJ8PNi$k1E zU~vPrN5Pb0M+Tui$KW}rDx5MxX^_BJIEwkgWJ1UbB_PIQE@F^I9aI&BVmcYaI*1z} ztKn!i6^cTm4+%a9U3|g`W`I5lhL3(Y9E=sH72Xbmlh3B& zFr``0<)k2OK<0?R?%7WHsIt$h%LqiP_8!HytrdS46Lj%Y(`T^?J*M9n=SHJO&RoH;b zX|FmMO^A{i>`%-Nbn=NzGHa${FeN1uFiBx>oQ!4`dX8k)NJH)erNjP&wG^7ExRJtc z$e2#50@Icaf{6gpfXWa)Kq&WDEt82Ok1O1-c7c zav1g~(2!IbIwuDm1PcSTCu}yUEa(@QK?64P2y~hlCoEDYD+uP=G|AFwi@F&ilmVtD zPPTJs52398@TSP532_9hX$amIRw@m-9-JzqCNq@8b`Lut`ert3!p;JG8Uq^%rAFL{ z!#x3*(S)kcj5%mk+Jw3?2{aF!YMSTX?*icByJEu&>( z*t75q$U=MLpj9a|9D*t~6$I6Z!kZ>Rj7<^>&};}~*V(YczzXXZEaTZMu^_QXI*y&3 zf*1s@GV5fuTVzy&$~clvfsloubtLu@OP<6ZFwhP<7>$M@mB+KBazl$S@Yv8XBN_$1 zOoN4UP!(tmG*8fmLk$`O8v;v57)HuO(twvh#F2HwfXGUII8ZglLQwk0NZ*!(h!6px zhN|2_s~|OjFN#1!NkbV5)ic7l@h6^5!W|=PI9cs!@Gh_r8?f@GVURF`NicHIw?T=Q zg$CbAs}dj%W)@x?P@uw84n7hT8XFoadd#LHd<82AL^!x!fG_~bhq6J_g5Dq-#iEZn z^H>SNQw17^a0&|SG;}p7h&~`=5DS5`fLR?3dkAC;f*h7XkmNC}eJcoqILSODwmMNIH=$ zuz}$ULP!ceD=_9IgAvP2Sg9b?Gik6J4#p}1F+2uAFp`O+Ll`W0$YB?zvk<2e2{Ypa zGr%z-V!?8Y76F->*$5~XxG3=AQajXOE^5jjEhExD8U?LpKq)23Rq;p6n;nM@NR4kYb8d*4vKn0abXMm7nX)Jmt zGYBb%^qD|ake*HW{K2pQb1V#0!8jZ)oZu@$m_|ASkq&|w)+Oj46c8kggN4L8aj-<; zhLwWRlyoTAz(CG${uJO*9F6o)f-34l8g7 z!fz@ZvS4EYQxpZe2TlTdGVp;;Fhdr29FlwxR&?lB<6)R3;XwjxCq@uXxK8$9BngrZ z-UBUwj1|R#NSYQrR5Mtx&>A>dqEI8ly@O0nkgwov8;#?VB)3$!7o%ba!yZgRDGebH zO3Y{kQUG+BaP5LHja8q8>c~M=p>&MIN3b7Z3oIj+S=omz#SQ~z1igbcIa=4T8NonuX2$4op<6hTIO<@E{8m8*Ai97l43m8qs-a9e4dKsp(kkeW z;7S-vVxhy39)gD+#ll44ieiGEhn-Xf$rGqG3|SQZqX`SP<&Xu(V#o}cFc`G-2cXC| zi|d=OlJ5sRYhQi0=tH9SL+AS5NQ%bCCE!u>`G{KgwtnQA|^($&6JR5SIL>GAX0v*k{^ zx$o8}`#wB&DiYB?4kyTev+@%mtkC$U6$E5-ePp#*zsq*c{dk7^S0#nu5s> zt}hsT5E;-?5K-{JPEas{@?xj~X3;FPqzMQHkbPq0!3gms6LEqIp!9=#U@8ge6^t}$3jVyfa!RW(#(7{;2L<$v13aT172Bg7efCYobjQEBamaUUr4qu5VEavdKGl_+R z4_XlFT~aZFDrB*jKD-JYY%>ICxDmr+1$uKhjKE|LFLSuK!Y>f^oDW|WgdH&N#NVU2_1ER>Nj8^Hhyw`34p zXsyZ4??~P!8&e#+E(56np`VEud{$vMfRPRg7cU= zRWmS#gH}OfnuhT)i716EEYL7t!32_orwOzr20S4gR0Zu3{PQT<0ZSrD0&oJ`IYgdv zz+Q%v)oz3mF=(b~@**%10Ov)qXMncg3y3}L1j(Qwu*6`rfJUKdf$1JvgfJ;6;o@Mg!ER-o z5HF}9p>Ru3fGn0dEKqRDfWkTrO$n@|VJA{e2!=?I1ZY|yMF1Owp!Oj%4>Tl?Mwtp0{DtR#p0xc zFjhcY1F_qLq7p0zL|X_aaX52?uuvVvB_l?KOaiddA>_p%hkaB|ZozOy3q?~-%0D{xf7-+Wsn&e z9#Bx;kiRl4h$dJXRA~@BbkeF6cu#PhpfeH3?h!;WMX*k>4xqfi=5)do!GaI02_F-L z$)h#ERHQu(B4~~xuN=krq!5t{*ATP|$Q;`bY*rev5wPf!_0Mubo$(^PQebbgz*Rx< z0xkp*s3IA_n`DZxO)hS z6sXZ*PeukJOB|`t4bapKyrwdUtukOQz|I590ChE#!;qt#Y#aoi1mV*L@|>b@KnmC* zNd?w-u#!z!IK%rdJ3>_bF8`NKHD3^0x3y)=}(z?s1FaO_4P z6s&actO1R6vT>q_&ccvGp$g6jp;G7^nK6=Z5`fD}!in`T3aS7D5r!Iy8R+NWMn!?_ zh%G`$AQZq3#){li;7y9iaS|wCD**2YPh11|9?QxR9W zP*vc>7AK1VIzh}A=}}>T1Xh5237iKfaSJ#G7~eq$GZeg;gaaB`4Y7?)6O|+M5_&=i zijLM56f4Atrc&@#hdUOcT$9i*Kz#|s0Kwh~Cj+4i@;vk%QAnxq3&nDR4iI!7&4uTQ zqwNeeFV1R##Q?!SU_2l|Q&1v2{t%D?$^P{Sd(y_g3%FJB|1GOaVC32V8)I zs^At0e;4S&AXx&jfa|6soDw)#0)A)^!yHrvg%J8eE>u~ZXcNLj67L5FoWjq;2r>R} zM|l93CxPVR2ql944BkpmsK5gQCR{|MQ$P~et>HHM@GrpUn?s7@4B$rReRA1>%@(cFsMPt1uY5Op-CB!ZAwSRAo?Lz^AnFp z=D9S5N5ocCYWAO^Iv9SKZ*T}u1mhin8Vez~I8Gx0T!=s!Xh$4zG|0Bm(6OIe3sGFIQ&3qaLwXXr+TCO1|$PF$g^%n{^b1qaXwooC^ZO z9t_YtnTCB}Tpa zb*++GidodKut6;ehalAQ6dHv^B^C}s$duG_<2)ps9a>OQ#BWX96vS)s)0ArEq3q4N zM!lk9>&?3K1Z8B3>EVKKL9`%P>uEcqc41M&cPyi!T@XZpKbKQGQ(TAM^x{GD)o?*L zLMb{rqSmX9{H1E;*DK0cC02t5bY4TI_#LW;8vkBH-Zal6X5m^M{;tsRfnDiwZfykivLD6=;UzL);3Wj3hBGcZC8i|aJ_ zeZgx8`!6X06WE}*h}gh_Owsp?>%0Rmt~agBXCHs|VZm!=gE~cppZ}lgqAIQT8oW~L zsS2N6_ylyjlBIbZ`3p1wBA5QL4BNd*MRQq4jS(^z$fd~FDit0U#^Rk z_swFX{#$j-lFwJe;~b#3@2?A=u2Qx!-n8o3>#=tIh9z&M8)j>LiMNWcC#sQ$U6!45 z_aplhy!s96)&E|h#fx4qDt;ZO+F8XVpT#F%sTKI37x+3V{J`$=jul|~8erwuwZ2dN zw2EH}+dY2R+p?a8zy7dqkKXYHKQ_xxy}!}|-i+)AHp3qEA7VFJ8Cp?w`C$LAhTX1= z=8R7Ot??GZ2Yj6N5)DIFUaxUBaTB)8rtO_|9A{;j%+Bm(X2;&;^saY<36+}enwj==ceSgkXLg(@fC3f} z1VWLJ5ElsoA`d)7JOGLU5<>7N01^@s5oI0nvduHQEd+DyOI(6!t z@ACVu1+l{?%RSde*5;#yi{}-OMdAr_M@&m{xX%C%gy-nEuHL94dM+A%T#l0HyQMM$QO$HqkbtK)XD7t^0DQ~ z$JQl?i`{G|g{1fsNh1BMP3ds$5me278;v4SrqRYh`CZAw_KHlFQ_}EGf1E;crmdT3 zRY_X~sjfw*;6tQ^%k;v0gR4<*BFh-+MvWJVbK#px=2Ei{h;XoVj^;*?P3?Q5p6Z*K z_HLE!qD=A<3onJe{o@5il0=7_lM%B-(Y~%eE&8JUVn9sWG#iPh?D2^uPb~F%%Y#0| z=lE`e9eEi9+I?<{+1~7rdP}2y8smat#;5)B zX=;BEk``bD5|N(7l!q5rT#}zOolatuY1q~pvt{clhzhJ0forw8E+!-1`^8>+3<7Mg z``*5{A)BO9A2c+R#hhqS z0HmJ=^p6R)WQ>yI0Tj$+EdI(@BLON?CDAON8Z+N&b0`egKW=2t`bUL$HBXKGAcH+e7Fup zSClO}5gbThq;(leDjoJqPtO~o?P?JY^lIURNE~@9&9_n_)zcbwDzF(tqbA~#Nv?eu zAVu14&#-%bwENjtVp1b(T;Q6At@mPGr2y|LJElH%I1m?%JTl);oHQHh| z#MGcquA|VV<852#)TB9ojl?IW+?Xl-7|ix!kZi;-pR=ww8^9dbyv{zw0^H_Go`hC-Rx^}o&)WFpG?~}UwL~&3VG|u?2@m z0U2_AD`SCRs`G&FU*-;is)qhH z2K}-#$&m|{u0YC9L4WlziZ`FM!_s$+)o7*j^#H+<4shIdOaXif7w$%q&f z*OP(BewK>hD-y9r^}R8qFEB#dfM6~BU%xR8EB@>;+&u(Zn}A4rGA0w19;1WDn2KSP zb=OI^NL49X=cjQb#2_1O`EtT?BtQ_~ScNd|;>`52`1nrAJ|b}ndK)V@g!OnI);Jt= z0G!cOS?u_9&l#4IK2b@SicFtS-*}l$OrYR;*)S$d8{<~FSm%o^x_X$m9|*m*Fv13d zDfDRew6mRz;i-Jex|HwOuI5IfETzt5?NwOta43Vh*#p+rHZC~*bp1CTW?)YEheA6%#zk|!FLr_Zd| z$O@rIv37HQ5&SZEk)`L$#A8YO4*z>21$Ps!`qlY2laMx|3saJ6?! z(o`p%v*pqqfs+mVc6m|!W60dL-7Lmd4#_g}qXO5kx}_9zM_|ttrl?&)4aP>;7^xfL z{?fre@18`~N~d`}@rD+>xJJeYz2d4(H zAys41Uc34Z=!)=(q#}PZ#DCRE{J=Z@sG4H!6=t#}uNkWrUO@Q~K%_Gn^G$(Ys@1pT zT($C_oG}7+Jm&cXz&G&LsF#q6GlbH9gFL}+1_{!oB}-c#fsR|{@ZZUmgb=XAI!j~n zJBS;6d!`!FE1^gVgCe0&hKRpE(m4|k&#|zQ< zF>5fa?Dyo1Ts=bp4-hzm*~$1`pCTaO|A2)N09^AJ9fs7cg_4GcHV>o$GWLF#$BkjK z;LMSP!&x1>O&^lmA&cpCRxw3~#T{OJ3w*SQ4-us{|55p)%s8Dk`v<4OGn70s}^PHo70r7*bIKk*kbWySi<`@;fLi9WEs7JU396}#V>ey6$2dlQv8sS(L0!rf_1 z*h;+1+w4pq#7xMEh+0KS2ol{}Z4!x+?0hH#mFr&5TW&>W*`8a<^JIU$U%(K|@@ohf zOR>kl>2L|T;wU~2m;LeTd>$?U7cg&;?NMk@&e((=*-!=%%@uHdT#o_5_;krKJBD)1 z_g#na8dRPX<1b-yuxaoo9>X^Usutf=paQ|7e(46+yqz<`iUng!QO2d$&8N?qPp_Fz zpLGKz-k_F5K=)xD84*p#Aw-1#OFj{JLqVkBvBlN9vx%1@am}X%Fcbtt zg^@a4O5Uk_3vzz8KQt02)~;HoF{}PEj~rNuYI)fqq~w*7|6!s!RM_-H?M7Im1x02t zxsh4culUdJ@q){%)#Fz@c1e36D@uSRN`cq({Yf$?ye&mCgF1oN>Nzc{Hz>bq)Q!P- zaWAE}NQ$#i7bV{J)P~K49vfhi#dtF*O5|UC_}Fw08iW(2AZfmEqvGf1yLM@#AZ9HU zZ@FV2T$)g-(5I%K#n1TOeD_oLIo#~@d`{Qqqb%npibR}MLvq5$caXp`DsfOrIw$&x z!;v^-NCeP32FA%vqj6snOg8K<<5A6+t>lKu=SmIp~uL}HPj*g|z3JBBS09nX}w zS=m}+K43vCSCfU%&K$OmABG?q1FZ?_Nkc+{Tq2U#LKe8S{z-|L*EXl_h4zbo;7vP0 z{>5u~p5=ElnLQyazI=xg2I>2=M(gHpQ6Jw_*ew`TY?hNCJ z)Ku}X-0q20vo`DFR~A6KqsUz})-n z$*80Ze+`8;?PF%&RQ{Fu-Va4>@y=?Qx!pLAfJbM_Jf`1Gg@gl}g4&)PA;*m zpuL}}ja$n0r&%N2l`}(ckCvh1k-Z5IU#ln6K11{c?QE$+wJ|ev;-!Y@UnG7K!;wPx zVd!b_TL@0*EV^kKb<>`pTJ&a%(G~dm@f>Vf4Kq(>UGoaaloGL^t%}|-VSOalXItit z;d}W5h4ew66zUf}mY4Iv`WhgwnGup+6!a&TxFQ@vhab-47p_)LC$Ac#&BA!ZM?}fN z#kai7s&bifkqu!+;?I4QA7JP?Ra=M;%%v)Sjj~89&aH{qZj(3Sj~dr2Bx}sVQ5v5m za#+^1)bk-xO;K+_A5&{dr99CK>f#n#RVc2G#90<`{%ygrC%ap?4RXH<2)dZPv*P^P zJ8#8^#$rC<#5N%@NSD*0l_Eb8$GgZ|iP3Q`k2wimeE%T6{EU)wEA=B4NVE4{sRg3~ zG$^J>mXT%<&^E&oz_2|1fnW6~K^+&+X&2A;IEe_TPo+0-b{TuH&+sBZd&J1)Mh;*W z1BmaWrAX@Z6_Sojm#_{|!$g>ks03asnPREKzs*qXSal_dr;cniDUaT!~i!OPkE42POuTya9@NFwd6NaJKUXb5=H_?&Q4 zXfL|-hh0tb!?@C)R_fFq1dF#Y+U;*D#}Kv2$x+U7)+Qep-$99DtTT@dp>JU zc5egPlhO34a2X05C3Ubf@^`;vi!CkPB5|>a&Z_&8@>RCeiP}-j!W03L*;aHBsT#%j zmrUE^D!R!Dil~zP*8``bN%v~&02ygoDJbZo7ueYdtcNTFRVO`i`r3aSM3?EzR|8)S z8&wL%9Gb_#v9y-CZkC1&s;i1OEryFk#w6m%X}F>|U8K^OItl0zN-kG*SFIzr zy^+5P?@p;xcePo+poy&`%b{Phi=}0Z`|BZFx0Y~P8M{r4WeKV&yQ4YGI$NcTeoYCX zkYa~5r2XE2O6v$JEOB9ih3{O{>CpAt$Qz(YZjk6PH2ofl&vnYlhEPS(=OK`h@R1D8 z7dTo(=ig;TL0^z7hrB(czyq@(#_=U_M!t8Xmy&xo?ZuR2J;3e6b7anNl%#-BJOHMt zf+ff9jf!M5jqi=1uy@24=My)Szv1SNI1lPdAr@>fpixjCj|YfelHU%Q{Fs?ot7$+& zp@{!DDo~m}7th}!7dj+o zV4?cp5n*Afz2PjJ*Ts9j;5(R4)8E!cC$`Mma;PM9FX=jEz~4|t@-3b7U_pvm{-}^B z3fZQX9}F6PK+qC!(uXj!?uU3CgbM@+@~t5&cEo8$_1Y({%3FjivbW^0pMZTQLD9H% zM#m1PS+aL4MQ$>kytvYW$&_f*kNIKgKu#E-%5~J*x#bggnN+6JybD$l-eX}Y;54hmsdFMFj zox=Oo(PblV?t5^945tqB@jSO^L8g zSt5%oNQ0Ftz^Czpck1FS#MKtScrWYEN`!_$)a_;n7AT9Ox{st?vJHaG8x;RBm=vaE zOFdYEoLEZiLczt0wX#AL#ggbBYr%DH3-#JK@#IxfjLLy2MpNLG0sb{Bp;i07irJtd zG_S%iH)<;ice#T zT96HslsOk~b;VCt6&G2)^)eDwC+NsTb=6L9B}wfElZMv;b|pQnqXK52=|vfy&o}+d z6Mc=B;l18Y6?GZ*i!Rds2z$0Cj6DN;_k=ou2l+RNiVo^>F+kPWa|azE#3n%qZ+VbH z4sqL?=@@X~iU1jNXQPBtdX>wC8bXnIj4c;J2PqWo^ zW3WHoCWD2unJK&ngB<<}>%5vi2Lm^HGETa~@qLd`N*OY$HCV^>_!DoCzyQ)i*-gJI zPVAU+Q8Ys!VJvEyx@6mgdILD}{6JvzfLC6Jsr5m+OtrshPJ6HEqshOIT-cc48U5XW zqrMRT67o?rnejkLQw@3P*wzki|9@J1S$ZVvXlt0kxDVEmPR`_(=C~z77ieE|cb`%` z^&P5_w7@-8-U-Ul2c9s`-$&BGdgs)VjN z6%HnA0)y}lAH7{H zQx8D&bNQ}sAO+Se5KhA#WjL*v-pwU&spc`qW5wse@YJ19D3a_ik84jnFSS-YLWSTi z%0;;NLGA=<9Ts#44suv<^9{)W70!Y za!QzyeHQP;Ul@mLVAY|Br5C;izOjwU?f+v-g8Bu1bPF@hVLIvf>a1Nvgb*2dwiJ+V zjlhbSlnfo*cY{eT7u1Ee32mtlNG$coL%ik_YsQ&*<%*&(ZgtYfZscI>lWv5S`U;6a ziKWrutiSJ3$|76qWC<=Ug`}2^bEPu3k7$wva;ZjSDw1^z4q`GlH?a?eBIF#xcXzy? zb~KE4pTdzmh?=Z;4g&mP82N&rW+n*K ziO#ylBmyYPv&g2&TB;oNCJjYv^69p+5|wRqZW+LNrwTx>(Kldbv{X}+(6SCG)0Qt; zWp~~_nEMmW7fa>&6(!I7ia8B-AIX_m)vQ$%RdN1PEGvoCa@natTCM?6X+e~VR86KC z__YJWAK{Pbml6Piz@zXLfXgn0x+H$1PD|X7WUM44?A%@~b2P-C8m(p-s%+3wmJ-JV zA*yxGtaVP!m^EVO5Me}%+5(|mpflyV8TTKeN-0hs5(%My*XBl6h$}v8&JmHqqJn^` z@=*;kDyo*kcPbm-=3AR5w^FfnypIo&)l>;_UDoA`A%G5zyHTjc&|91U8Nj;VPVwAQ z?TRONQB&MQA{zyEDyUv1nm2ZWswE0gm{OWvbp={FqN`PX1hbo64ZiC|#Yb1+8>H5mh4{SL*jkZ^aR###^Ceg$ z{!WKyeFf|7tUH=ko#B#nw-8$7(`VhtrML{5NrkGUy@zOXYfma@YupWKiZLzBmB)x!9++aTBu2icJRe>9 zg8aj>)Jvfv->aWEAhoY-CPeeq5(Nn_oA7@rD2vQi87-?wPlHicI#)^?D%8H5#uk6< zyG_9Bm3q+RbqFXJOa=}UFS{b(T=0{CziRkTFN5nmwB(LHp?ct^g|KM8S~K5fjNnPH z3lC`?nc`wFTPa)buViFex7M(z9o0y7i7UogbN8}UihJTZD#$UV$8zti(R4|&jK`~a zn&0Js@OllYGN}of z{r-#!+@GqQ&ys>ul$+th!0_dMh`0iK&@e z1ocv4UAZ3TakghZrsdJn;$E`_0s2tP|)XI9|jC`cw1|W+@HRxQNuvLz{ z=D>|Y%#0==2%R!n-k2mgH?yway#hoPJ5;-UHaG6i)IVmN|1rHb*^|MzRVOd zpVb`ppg8Y0fDPSS-CQk}CS^wM6reM|8|&Ka-ekwCbNEqz(I@24a`!nWr|JgB(g6~m zrs5^xRBL>Csdfq9bAwmbvH)EC7`lH@DEm5y7*OKMr&&3hd@V>xYUnSd{m%3*Yma}> zl<`eh@GEb~XH3yeL;`ox9tDFbOO+BYXup?wJx;p_AdeX%Xgue5;Xi_FT56iN$B?J~ z!%%^ZjQRu~!2(as1`f!8NE8vjOIhF zSXZ%wcCW&N>TucMfM`{#=#UO~x*aoNGb%u;7FygmIfQXi48_}g%2d@@)76glR6X03 z5`_@>lBe`493er*-R$<}rYw7?MAbC>P&u9>c#d_lQu8_ldQ`CZeAcUKZX@Y8gW8tjn`B zKx!Bp%|t>&VNxYag20;0$di`l7@{b_MgjKJ6lUiw&`kl3afrP?h8yM~!r9wA3Cp9* z3DH-P-vgJ%+Z-lV@5?c9F=?xkd&y~e&KGj-S0#_CPlz2p5bm%<9^yMPlHyLF-oA!m zdI1fgl9!SGYG-uS8{pKZrH88@w={v}g2N`OX}gnpAo$@T@%M)g{;&tDMN~vCQK~E{ zk*ki@Bt2DbP2g2a`g&rVEtMTT>$=UHqS6giruJ7+fr;Q^+GCQ5(8ADDL9U(*=m(i| zrNin3CZ}qQL%hFWe?H``xLXG;A1&fZ7#%8E*4NH=e-3`NIVi@0kMj0aLg}g6QKs)_ ztzbe`Nd$v#N>FtM|BpjyEsbUTQoguau@YX9c*w-y5R}IAUK+V{;M+Zwben>>YE>j|r=Azw@7Vn#RR=+tb zV6AARv{N8A5rSqt*{9c>QY1!#RX1+4ti6WTGHZEe>w@FJ!{8^gU|dNKqC#M(^>h zLj3$}R}QCd&}&hEr?}@SCp+klr)pGG0c>S^09=>Eibm@J7%2>U5wH2y zj-u!prH=BYr1NPDof@IE)=f@q)UT{m?oH(!`aNT~%{O#V5h*gJAyKC}*Q+|~<8U)( z=G932x{fS0VB0{xAy!(yPIJ|Kq?Sw7x3%3N2nHvnxq1)rEFHDrTudg*DNC*Dz9-^T z;9XX#cYT1priHL|=70)-W3Ex4O-W!-S3s+6zYeL*zDojo;aAw1Ud1{Gu&xb4eJcX@ z=T)WmKFbVB<#xbw%cK+aT{R*sG;=!J>t+F>okM*p(%oVFtZpm3+^7qbt|No-@{qE`i2Mp?^ Au>b%7 literal 88532 zcmeF42Y?mTz5g>ackZ3L3OiylTv%Cl$rjYS z6pDZX78JWu?FAbuVpp(X?_KP@_sakCJ2UsP%Pz{~wY>i$hTq(CX6DS9Gr#jI-{0?? zZMgFyv*Aw-gBxPwI=Z@>THPT=gO+TtYvqYU%m!oh=v2dqhPb+--I?GG`9{Og@g1G* zt!>?1-lXlzxm>c<>FDg~n%LRl9MG^;Lt~fMIjObcHBIt5yIMQihv*GoYWQ+PyrZjW zyw}<8wGD|inE9q+Q*y|i7n%)U8gdIXVrjNMG)$aAGzvKb>;`wpX>&|kv)Hw-u~8A*Il>vEgCs?<_T}9 z9}8Z3>w&3q>B%oHx^$ZS`0TiI@0+e}{+e}=W`9Gq>v#M1(++>tKQ+`^sM(I3GQV<+ zCeNJl*o8sIziCa;ZB5Qu$7?5OCu%2Y>G<3CzxSMKe#lU3s_ys69D1@gpK}krvEuES z!4v1`_E&p7@!=!i4{jT2EeUS($K%~uhrOVN;l)+Y9jk`nkh|W#_^_avb9H+&)y!Aa zfSh>RMHhW0?>*#e)^feiJ3V{dlKSi3TRY|7_1s6x>UX`N+fBV1yyMZcj!?rkWIJoV z;eV&#b-sSurSoU2kNfb{S^if(>bZAU_@8^Ib%9}Lr6Kbxm#c9*UJZso7 zb#CYt+La8)Em@~dsobTT>bdqk$X>7jQsw!Z=5tE7?8=P{Re+Qe2#v0>hk*NKW5r{_8R@O zFP|TL{-M@cQTyL|-!|o)>mR9c^Q@Tv(h+}hzwq3WV2%v6PLA2--nTve$VI_84z}v0GPu>+UlJJOS|FHMDnYS$oy7C=sQM}GS`jvWm$ODUy@#pKCx2|63GuhXyGvfAO zX&?|qpS*nOm9^=9N!Q;Q{SFOowzRTrj zH%L3L$_ZFhX;X=ME zB4k$~y9xP;kTF8`67q8)zYx+aWN#t+2>GRuUkTY) z$ghR`M#yi4{7%U4h5SLtzY1v)@^3;MA!Q*IA+8WlNL9#KA>)L!3fWJ{cp+^&^c+Rc zRdlJM=P7!=q8BK7p`sTlx=hiF6}?2!OBG$N=w*toQ1lu_uT}IqMXy(MrJ}18y+P3% z6}?H(n-#r9(bbCHs_1Qs-md5!ir%T{U5ehV=sk+wtLS}--mmBbiax05LyA7E=p%|g zs_0{iKCb8!imp-gNkyMh^l3$(QS@0wpHuXCMPE?#MMYmy^kqd~QS?Teq9-VN zqM|1$da|PP6(UAik_nAsfwPa=;?}{q3D^4o~7v7ik_qBxr#1T^gKn+ zSM&l!FI4m*MVBdhv7(nKda0tz6}?Q+6^dT2Z!_5XlD+!41(Bh;rH$0Sw9O#Q@yYXl zOHr>CAA8_86p<}oQddv=Y-W^lq;~qgGk-$StQBv5MvBo|@x~crD8_0xpZ&?1ax9H@?igR z-G1dnd3fVU&EUNZdo4VvTXwB@-Wq9p3%?k#Uqk-r){t6p1!AXH@kHc?Zfz-N2V17S zV&O?9P?xdEU<{CThit z?n_YoTCI53qhF&q)GzAx&DYB-e!W(lwMvTLs9iko`7J4aQ;PCs@175<>(;kw19Zh= zriyNDT`NDaRF#L-%J;2OTT-$_iE+YcdPP0NqG?cn~D6{$nQDWvh4S+VovGSw*Ko`_I+0}|8;9bt$fq-%zoV( zSt}p*gerf(Rz74UGgG&=^UM7i|DDJGiPPKrz0>U32Y;VpQ>}Q&V{-GTT5%3@RJW3~ z;yfmqZl!9)D=*uPVp@uuGo@azC}nD;Q@=wgTf6jLl&Ws!>cv^VrkJl4kH30fiiKM7 zve);fSgaK<_*9A|zxXBl`A>JJIJ#C`wdAK1e^4vF`O%&fe^@J?cJxq+|6D76gof3v zA4ySI=aes)TaT~#9+&@%Ka_F%_-kK@QU0-%{;DSc{Dbw23UZ~20EF14QV(n&6^6%fm zZsqh(?307`huDKCkFoC$Zr{=#PI-6x76g_&@5{Ixru9?%6=vhsFyU6VL34Z9!R=oG zDKM=)?F$epa`{*7{VD&dnt>Sbpnm8m*x=mXm4y!akSj zy!AGlSzo7l-D>s=->^jt>@9^s);B3ctbJ_6lQjG-dlEPP(!Ni1WHWG&t-1DB{*A+U zif--e-}r62#ErkUnbq=yZS2iC_Zz?P9a{wAZ~Y60+he)#cQ(R89{64R#}t2W2WP*B zGZeA@VE?;+_Mhw|#ecP7OSyPkJ3_I=AC^JZ2)&R7yDCneWUe5d$LT-zuM1WtjQDp8F^t^f3ugX3vBC0_Cb-M zQERehuY^ZL`2EmEJ7 zE)_>>_LM*&?xXna7|r&iqk~b6!qCUo%fGU}NBKC-M#jteeU)NAzJC7K=ta{yLG#sL zqxBnm6c0F2v#$z<>$mn+RGg&QhX!5v9aAJ~ovhgp2Hg64H5BtT`|hA3>`*kKU*$tC z&;otch=%<=6@YX-kd*#8R6{=Jm{Ax)Bhw{N;U#;{z;JNvHT`cD5pfQizG z+i~rRV}<>$qMu*lbK@d@cA0ei>UzbBwW{Kpdc_UXSI8CD)+^4vYN5=R>*^Jcf3!#{ zuCG_jIb^X^tgKh8S$3hcA==Y_?1jr!#SQg}H78#rSKL^ym~w@xxT#(-=So#^v#Jp9 z_IA*+jrMMJd&MWa^MG5pUA|DvUNaMv*IHdKKQI^k*Sb}e2XTJIJ^yJq!9O4~h~@7w z&Boa$Dls?M`d?xBFMnD-+HHyl28-iA_a~HZub0=(m$HZ+akDl1^1Gybrz#8fws7kI zNu&GqDdK(Ml8bj0vuC{52OxXzt-Uz=UjdLUpHCdfx=RheNSmjRJR(lT-SvvQPgE86 z)GMA|MV!R2?yXm>yiZk#-|mZ!>mN`R_tz`t-F2|s@<6@fp{G>EgQ`L##ht`5LP&}= zClHFW9^!V96uSNC2U31ml^d1(r;{VO%?=Kk-Qc7MfoG_5Bz8z4*+^xu>-M4(h5AC2Oph)wdOW*;CI*y54= zkhgxS=49C7l8B-6G&3+57(5VB^Ur8L%CUtw95cn1cviFD3M?;d_$b#rr`db@4P(OZ z!zIsS=qht$kl65>G2AbxRtJdzZ&G|w6}J%U{V*|=U()QWRhxsvei!TQ<=_U4cj3ra zf?i>{@5K{e)ohTut+&}iIzC@opyxFMv0u-z?g=hLt=D*3;HzQZ%iFyk^n44k?+Io_ ztv57#PSABMeCf%XK~J#nr6+IwM|y%wKyW8&y{*~P)l;^xa0*_EQT0yEpJ)`fKrF6z z>%)p$P~wvJH2cV)Z=Z`QHCnh0;vc`S*&sN==J*XJ6(4A}f~5vq|0i&#O@Ou!Xp2z1 zX4!JFEI)*O4HzPBuYTkynTj9PD;6K~v{Zatuejo@XQbkjdc~Aws^Zgn#qu?8>s;|! zz2fX=RmIwR#igIDl`AI0xBg>qe{Hfs#gux*iVsx9)Oy9UCryvcpw{$Or$i%N|!1ht?}TI_!CQ%3<}2o32w8hi|yz#ufh~kA3W#^*Z+7(~tj> zr>t6WvV6)T>Vv%WmFMI$2=?cHsEZC-AXkX=^edJ;ttyUE6@!@#|G5BoIJ-(rpraT4 zeX*)969JfY=ckuH{PrC;i=v&!8;K3jWbcN&_iV9wr2PM#ydOju`pOr6iQTxBd{imE zaL2ED7mvM7;(hhAC*4&qN(g(^Q+-3$_britN8JR!<0y$Ng5ijX8MPO`EV}>bfL)^Y zD=(}oi^cx>N&hu5Z0w><9@PJmi~~`sH+-~GbjC4tLG!}HOQqu2dc~Z#mr2EO^@=0j zRTY9_3$MlPzd!aSJ$U@I%S6A_8rPh|W*rUvLAP2c3z_+HH*qF>lJ3v~O}zLQJv zYZodO>h{m1!j|Y)0l#^XZa<;W9b4jG6182d+aJUIat#463DB^77shF)cDJ zqt=~QQ}+;R9vXrC8pI^9nf`WD)6-0MoKy_y}|fpmDKopQDC&kc7I#(Yz$M;C%mrOG({RHG?dIU2=gR zNN=>hD8yz<_$$scE?d_G0WfJ|Meq#5Un9BTa^1c!sJU3P)6`s{+dkAZNJ3zO=3E(c zf&iGvz*;bLJzUAQh=&cOfvfcZsIes=CUM_ublV5BYzc`8a&xV2-xNHSpje)o>va3< zU^G4#s2OAtHIo;)KDhr%8QiF~QnzdPQCg<;pl*-#EAG)) zHE3E7>9x$2do?s1H4p3d?*1kBi8eB=M|7LSae4XsefjgKZV#7=LBw^GVDD_+dw#_u8Yx2rFmyj#w2?@T8sVpOTV;qg z63$V&?P=W}enEP=!nSw=LYWP#>EvjMMO45ME;>O zaasICFiy9x8!U6cmVn>()V#ooNTnrg37d(1_o8lJ8rY4`_%$zK!UQ!0{N$RKv3>(% zlYpP32)&});^d~pNhNYNB~I4x;{V#U9N|J)Dv9WSI7O(DrE-g}CKunZ-a#u!z|XP|zlXK2 zhV^c};VUs*y|Cvh; zG3;6fbU5NT1HmNsl!+F)&3+OTP9!+#{=Ym=R&Am>>~TqR&_ zN!i>25rYSJPJm#2Dt@17%?=cXO~MxHfOSxY{hq>`Y-=qGV5m9Nun!O1KK9KK9dVdp zPYY_;xNAFV4mWH`@)w7ay}Cs89D$AqYNpB7T2X7RVP6?&je~Th;*K=zB|!(*uW7WV z>-HXW@F>Ga%xr6huCTj#hJ90@pl0F)((uuSeXXk5f?O_phCKZk!(OybX9<3e&iZhZ z&QfObddvL!tsdOuRc`VsH!a7r&R62A(c0uy{?~hzHc7WiZ5(UZM+W0QOEz|7Ijdps z;cJ%JzV%4(AkuD?lXFtwm=i`1)jv~^*HH!@UAa%_k>vLne zn%KE+gq<^gy<@AH= zZB+G-nDZqV+PjyN5ouV95oP|Wx(BaT6-!iwtem|0MOis{iYm*>$tjywPX0HooE*7$ z$d@$Th?vos6>r#V^Ff0fWwYBaZzbEfvK#X^zqR$SZ*TLR;otqZ-4ju zKm2RUzd7ZK>s7~&Yu#^r+l2OxiGS?u>h77e{{aX7>EHkSm%sjPvNlDVs!h`l(xz)O zw3*t$+9BF3ZMHT?J5)PNJ6tsPRG?p6BL`ZfBs`gQvC z`bvG3euI9aev^K)ev7_Zzg53Yzg@pWzf-?UzgxdYzgNFczh8eqe^7r&e^`G+e^h@= ze_Ve;U!y;%KczpdKchdZKc_#hzo5UUzofsczoNgYzox&gzoEaWzooyezoWmazo);i zf1rP;f24n`f1-b?f2Ob1CmU0Ysm3(pAY-~Q!*DQ;pM%(~UEXGmW#1vyF3% zbB(3OdB*w11;&NOMaDAYV&f9yQe(MsnX$sS+_=KH(zwdF+PKEJ*0|2N-dJg@GHx(# zG;T6(Hf}Li8@C#_8MhmE7^o{8IK!J7;B6t zji-#Kjc1H!jpvN#jTej;jhBp)pjkk=qjdzT9jrWZAjSq|ujgO3v zjZchEjn9m=#^lJ9$kfQR$U%|mkr|Phk%J?LL}o>1N9IHhjT{y^JaR;2Zsf?wQIUC( zqa(*ej*T1_IX-eiz z*`jocQwJ#t6n&d6PnyCe5R?v30Rxj*ti`Si7I{4K zL}X3m$;eZYrz6iqo{c;gc|P(&ycc;t z@J!pk1*$& zN18{O^UR~oW6WdC8 zG0!!Zn&+A4n-`cDnirYN%!|!S%uCJX=4Ivz^K$bF^Gfq7^J?=N^IG#d^Llfoxyro3 zywSYLyxF|PTy5TJ-e%rz-eKNp-eulx-ecZt-e=x#K43m*K4d;@K4LyAbUp8McUo~GdUpL<{-!$Jc-!|Vd-!9ul1uogJMMJv4e)^zi5r(Yethqen&O zMURdi6FoM1T=e+p3DFayCq++=&W|pLE{raUE{-mVo)SGZdRp}K=o!&7qi03Wj-C@e zH@Y->UiAFv1?4{Vtu~%ZR#$JoP9(yD9X6&ul z+p%|I@5bJXy&wA^_F?R!*vGL?VxPu7i>-}Kwx(E9t!dUl)^uxzHPbrSI>ee~&9>%P zhgyeOhg(NjbFCw-qpW$>(bh56vDR_c@zx2}iPlNh$<};pfwjuzkPgze}&#+!SO@lv*NSkbK-}_4~rij zKO#Oieq{Wp_`LYh@nho0#*d31A3q^}V*I4|$?^H|1@VRPMe)V)CGk_@r^Zi=_viQaEOX8Qtm&Y%QuZUkBzaoBR{HplX@oVDO z#;=QCA72??6~7^VWBjK0&GB2}tK+xEZ;Rg^zaxHUJpH9KySDQ0yZrlp+OSU7AQu^s zvvsPz&W~4h$ULe4SjZbf4wfr!lM}NeY15i#B=$*1N$E`7taCiq@Q-(CiMut*uLQ>@ zwZv0WJ|yBFAJG%Dv~gPkbh$`IwO?a+q%r>$GKYKNU2{I91k)Q)8%CjjU)~e#(h*vG*NuqNE{*Kv%M-Eu1XS! zQN<_q#8cAd0wb|d?!DYdyd-VDsL9bJ)t}2u)+i)?$YG_X4vP#9vh*XdR0i#Qzjm&) zXj%tH)ZtFKCSv_S-7r^A>_}k;XwT>Te*Tr3^F)#s^eeW7!z9N7Ly?mb<|WV!8i z5er@XcvJ2_L+WpnUkl{dLTPR+|4OtrLuP)&+FSAI6rY8!6NZkmmd6(ZZzwSk1xZaD zFCY4V#DSc>L`z&Mob`^8cvrf0ra#r*^FP3mMk2|jqoAgBctjnh>gsTlRgT&1bX zl~Nh8_GA{D*1i4}FG(9FNuug7%|Be?S3c+;*7}FJep~lRTM_FkiLcVH*Yw2e!p(>K zvvaC{xWhku=)dR`f3DhUuAU$T)4I_=b+mt2?N`3<-*&ZMd6Zu|-!CndQpD;|ci-h- zf1-bCo`0C?SI+lud)}{n!#~{ZpPS~Nd)YtCluF(DIj?bu=Bu62e&^%_dkU+hP+6SYfEro&LGSa$sGXk(eoMT`2R7j33=Ez9YQAlOl=f5snvXiHl?!-Q|DD zTm3n9k(449XM5LBi1+6 zxr6=ZoG7=mWokqwG3&RC#Pf1|PLpHA%BTl_WF*QI68uFh(|X#!@gScyZ}tzj>WNm) zU1O-jjEHLVN-Z%*8remaP76fKCrY$L+0jbQvQwjxIA12tki?dhW~*9Bbyh9isHwx$ z2#1I@P8Ck`>#p^mHBC;LL^wFeex8YAq|t|r#KSW0-u1_0fq%G6PfVhj9w_f&aEP)| zPvSVa<4iqqmd?pvB$_#SxULSLXzFmAk@z=GwLqh+flC}LH=LpQ$C<(LWg~H{D3@b& z|M-ehP_nc`87uoKW93Xu9q#dMmh1de-%@q&i2-9;A4y%*x-?LG9|y--dSbS;{(_!( zQNHEJI-MbYBZnw|#VT>3i0xsU8woT>w@z8!Eu$IxItPwMP4^* z-EJiAkY=9M6VFNY93zqE@Sx5iV&zof9I1cYs&v>2}Io zTJC9Wb6Z;7rg7bEL$+xcR&u<2sgf#Wlhv|Q&1I7%uUyWjQu$OR?WM}q5KXz& zQn8wH@D$lw>#aflf2P;Hf;TQy&l`%Gh}4Lws|+7 zEvE`}w^AsTynNAh3SQYQm5Mo+E|hbXa;A{;@*#Te6${eAaynDZYBkOGp_|2mQ%&Y7)qJMtp0CRr`zlGR+wEpKGcoI=j2;yI;crRr5+j=N zHYFTgtrXH#rwHQ}lGU^ezgNTbESG{=lW8|wb_=Cyo?dw_ub3>m=^|4mwUIr`CX0ni zsah!J9D0zgX3K>npS0wptJQqUO}Sp$O=c=#_{{MN$#kibFVMNPS1hI6Y?bEAxiWl{ zOXo*#*RXk|qrKZ{ZTC9mFInM~`aw>HrgbqSHNY$d?<2jOyv?9M#rZ9(4fMj#4)aY1piG!$kS> znTd~vY~&c_`Ph{LT#&CaNLdF?O=hdewrn+DDP`PZrR4AdN+I~lN#-lnRH2k9W~=E! z)-6;rsjTPZiq%p&>7_EGuhP~Vq;s`~vov0dA@c`Ger}&iCX>C&KlaQ1$c=I)P7KcR zYy17Y?s6w%-u3$f((c%fHmBW{Uqv^aDZqR3yO648Ygw$s2H{0 zgXm3rx7X%P@VYw>Y-#Oi@yZjcE%1Wqyw1^E_T`I6V&2gfm3>*%XwXKXbNX;%W5b~F z`*(DrCP($;bEAv>TRLJ&Y-3rh>Uu@Dn#rYd)oLz{XmPTxldC!z$3dbd3zcj>S<0kC zuvjuzEg^LZ$yBKfqvdm=mf+(u!k(5=qrX0&;^)uE?l);di08O&0lASZxo+OgG1Chf zr&1}FQBcVO$}o)Xtdw$YmN!jTGwF1pS}Y+qvtF{2^fCyMVi=W@a+5h)@XD#GTgnwG z%qlmNgLMn&DK`^luI3!HW4=@@SMph}ioA5o`HEA8>(L8UFBM{}ykx#WM72;ZyOnG? zUGSLyxuTQFd!<~?3nyh=H|u)Yf{W>b{3xZ-msQV6ma^$ev08CM^s3}w_EfM4O6hd6 zB34%>T|s_ls`+dolS+nYDpjgx3e}{WPN(Qju9`t6q%y^nSH>vJrow!|NC+1{O<~3+YUr(Mx4R^op@5XVWlewN%NKi=}M23~S_bIn1AOsT_tybLn(CUtqwJ zse+q!F&@2?mn-G5cA0CrFk{6>;{~0(0$roYDG7>sn zu9mSi)AXl|(5RFOVVcS?=DAFnDO{m<>0$v3xLnB=i(;bju3>tGm6Xq;9GnaWY`R+Z z%DFTRRk4YanAahia!UDp(Mc!El~O8KOkygQQprj-1G|>+4Z<{q5nQUeX%B&$&S$gb zs*`dssk7NsGE=PNoe;e$WGblowo@yyfQ*Nb_%QNfTbT(Nj zRSLN>#(9=0S;mseR>OS3B34BbK_EtSHeJl8GP$HngH9%mEmjF5uL|i>DTR!Ijf%;v zlS|T{T)|7GE9sn@FNE>vipV)9mCbtvr_2|tmP&bsy@(Jir%OnT5W|iuSk5?J5r?B% z%;fVK_`ofe^4U@Wi@z9V*i#-}RZbiiSfVJ_SAprADpo3Gq?Z$h+nrP)SHchC<7G0* z6f!T%oIz|AQ!>ZH2pKw(E0!58#3)WjHIs1>>)B#9pRZ=I*Talek%4h?Suckhl*^^c zUe4oRK8Mf1sE28)_@wM@&3NV0!w#sDEZmQzY zEm1Y8N{-h zutzq#Ne*GSJ)bN%X(#6v@<|-^bUMp?DIn?{*DDtR1VW5ex{UK*MB6j%Jf~c&X1r7m z!^q>mY&scg*s)!hD@D9JL`*4*#|G+BLd)k0PA-(GMjK!_X}-TFHnQhpFBHqT*kaBU za$)A67*tNKR4T#VZi-I;RF%mVoFWFY=Y}m{=ZxS+rQ8MQtklG;Lcvv>1pfUxwQ+Iy)tfeWy8MUPa1aZ?+dndRGhX^UE`e2 z-X7sT9UX1ujswK=?Hc9#xTDIg?ZMCf4%*7c^wC@Q_3G?~!Rx%b{AjG-eh%VQ^Q;g& ziJW83rmOipC{oEw6|-InW^gNBv6!!;;CJ20-0VddXzgqgx0j*TG+^pdLar1)P}`mo{Cg zxD4lSlyIwQ@G= zmN3uYFE@=0Ml**I<|vpH&QJxEx?J@DzqWVz^My>vl*BUD4N zT4u09xeqRga1{-M;v*P=V~hEk!6{7v=>mv_>6J%^N?653%(^@vd@_S`Q%&(PfN7ZL zAy~AU&Y_(0o?AhSV%imx8Q=sDdlYvtT@1qv883^QR>9`XFyJ7=C8RmvAKrJNP;tXp z*Wg(h5A>KGVfk08nPNHb5Yfq&MZ1R*eQ8DnyWc~lqm;|V6pker1KxxSPF)H!Rvs}P zr;-Dr&g5_&2>duqMHF%oshV}eNYO$GJOB&IN#!xcfM1Bxpyg4=g$jmyn2D3jAn7t$ z!e^r2k2=Y|3j!YVy zzLJ|t=gY*PT*5}cC+RT8XR(}eow8d@6YK#{LyCfY16SnnA}a7n2yO?W@Nl>Z_Mm78 zf)xndWr_msrLktQH#Xk7E>u&*vr-N;Pbj9GC-ebwnJZ#m180YsI0&W^=Bkq^h_EXY z^K(=AV$qQo&*egeol>ZUOcKonFi2zvE3H(?f&hbI7IG-H5HARP!2HXDae#eQv#2Wo zQ0#`BraVgaP^FwQ|h(Tv3s zFm0M3pciJ?t7zi9xRcoX1#wESAHX__L@1J(Y(5M#fW{^n70e)_Uf>>HvRJ`btGZ01 zY&blp?17xPsIWo~cvf6@4n=weGzab*<^_|*3~Cs$$$)2Y9sux(6A&3?E>;P!gjI zm@qD1E|2yhpq9j=EaBLf!tj;ns2d&dDzAd@rg{zBSM2a5aJ7hErIR<@S^GwD`Y5S zi>VBDpo69_5M14O(I=J*HZkhOD#pv-jPR4gm^)4h#bC6z6{ErEn$TcC94+sb|e8vic5&5 z5K?(yg(5K$!qIRZ1Goo5UykJ$_5f2PB z3Ep1dPOhA54^J(IBnCVc*E#UMd zlU|XqREngWFhV9z^c2qluZCa?rdlb5PYK?O-U9s1hZ%N(bkRD@#8MW3R>nOA=<5|S z1#%~{VHACtH^ZtXu$#{ch~ieUjF^DfqNFh7!zeE}pn&(4Cz+}Ma|`T|g+V2fO29E2 zh8fZ&CsoEF$)TzoiFlG?lq!(^#K>;sFcI-721ls(;yyI>|~5=(y~C;FpkR^pqVhe!h!|8t}=PR zEC_9&sdFeEK4TJOD->VxR#}hi4dOQv9Z8bt<$+(3D3m9U&k6H_UN#A=BifIlc5=e8 zB#sflOQQanIRn76JM6p9_Pb0XZ{`<0UXQo^MrN@vEz$nyT;^s4PR8d1t1LT2LjWra zd5oV7&|VluP8Z1IaIwINtr5P*gpvRl5%?0ZIu~iUUNoedNJBWY5uH>qiVr*mS{ zzL4#+B4kjEFnz09R0%$!`k0&*jgnm zHBIQ~Y42|FZ}{VH@_*VtJu0}nU&`98O9#Ex+#a~E~d%L zB)K?@5F(9}JWxW%Xx>T@CzPbqax#ZiP)!v>zMzvS<862uf*F{s=>m3rj__WE%%h~2 z52L-4q`EROnb<%Zq)mWbr*Vr^K29Z54&!Yw;3N?MyX8>)=Ie7jR zG#svNh^82(iVH_EpYs`yP8BNR#*kq|UTZp(Rmdn+DnqTJx)-F zUXe)z+6^X_kyt8u76m7RGn@qh2M|hyk)q^nVwI-wGx?0AbSX*p23ZA+nuLzf-W%`n zgS>*Uk)KII3J7{BSxgZhL(nkA^SMy*LuL%7Al67ajl+&T&x#4m!74_D7{Xy3Vq!5F z%#s}Gj7;7#kxbkbrZTB(9=1am(dPkB(++uuZW(hY1LlowjwB=@60|Bz{4h^4iYrW> z$^lQ3F9unKod58J6@!bC}%-iMU@(ckQA z_6%;=ycRmg#v8yAnYA=JK&!vnbJ)+l&ejgMwK8lUr)z*Kc1rbq?#6RG)?=DPB^Q4$ zPpZ9}L}`%_mG{7IFek#O3O8Ra;TDSohVe<)XYEUxyeblA^CW(TVpH;5s^nc@d7$jc z8|3@(U9(7^Y?(a75DY;GSsZf!VKjXe)3S49kzh(D2j!~9OM z@CdmjVILA3L-YzYoaf#wel<%ca^%9L%UP^Ra&K936)K4|pC%QaOf^=Iqy;I#u_lE* zl@w4N!y(iQW=Ib#mC>g~WR2s2*noGEJ(@~oNNx;+kPty3`Ke0sX~iwj7t{p#6U5yx zAb^y@d_j@vtV&{N$iFU>Nyq&>^WEC1R8$ zQ-x?MM^IGqu334P#5OG<00r$Q5bv?bDwG>QVl$SSta>6&T5^-XsM!ixcDx;E(ci_Pjm8(6eclBH`Qq$mMCKm($GB(yqig=tM53x*PAn^;C6n&L$~ym;;< zfD5V!JcS)YfcdcD;Bw@26pLZForTAevxE=8NW%sEBDO{v6j&MMFfT}` zL6YlOc}o%vSaX4?!(tc`cmW)$g)n@TLpdW8L|(yPEVY#kOIF&Te#l`dg^}%GU0CWa zj-)JyA`(vkLTm`PSY%0Xs0<$#RguL8n-ZhOb|>~gxHV1hq(nAa2)-g!DMbbjDf1~D zW{?41)Wxv`WX6ubh}?J~1JYCg{$_MAsIWHxiIb#7;hF%8lc*S?DT#_DCB}_tfj1@P znlvjw8QfJgZJ0TTO-<%f4p*|wdQF0DWEsdh1_w2mO_#&C0S?}?3_OcQ$d_j^6b-Rt z2XRa+D%`pZG$%{P#CXY*8bH#fa4ge?oSY&mHjHFoJ(Mia0$wFb>VWH{ld{AWdkelm zN{1MBB5EXf;pyaAIY!=ep-A+H^+@C~p;9Yh{AUpbSwWmwTh90pbHyKIAu?;RiPdGp zuqeJatDA9Evq18gk65LWUnOf5Nx}`q3?xhxut8ZBfRP0>%nC<@j0g#=Z`Kus7%PGl z#J7>adF1afeATd5gn5M{Z7Tb&&2;PSnWcvc;{{p#^GaCxAMMtqlURKNHl6YD$ zXGX$_WKk2i!KVxHf>|de>o^f8l7xdaC`jruNnl7&?D#MSBxyO|eX?4v$dV}5Wq|*o zS4o|%k_YOB5i*ESj5|=r6mdV&0r0snk67cBC-IWSEFoTywP(y0l6P66g@H@RRU+uD zmtuO8RTD;vayjvKq_|Td(Ey|d6I+RM*?8vPJ;pi5MU;QC5K@K@&N#ws`!75 zK0<{h*(J2B#JVN#Kg<_|hww^pn8=eQ`xBRfTrH9T)Y^l5s0ElRsZnx+ST$54(Lr*& ziSFQLlEsdv7-Fn4YJo7Ja&qmkB?%)-q&rDmts|*7AR!6sBo?Dm@lc8C z0QRA!!}JQ9gNNsdLZiAcH`r4E>>dZY$l|L^DA`UFI!V$q>B?YN*db(?;!NZ!>^_3y z6)IuRb;(H}mXu@FDt4?a5+Iok1|toEiZJqu1q(UiBp~g1NBk!AGwVI@?Pd9EIQ$9} zh8R4a_$g3fXeAGUTQhVB60AE90`O(+ezo^7K;{tFBdtC}uhgn(EKzcwNjs7SNo7)l$;NO|s(`^EngUoQOPuvYM4CtRy} z2eW1EGWbfEv0@cF5$BTZ(u3#%krU*PMN(-M%nmhHaA-PT^vLXDU`WMf#~&GP*8ikP z+^U386NCqg1kZ>F%BD-a7^XKyAd6sS1%Ig2IN2KktcsjZR%@|ni)1?%v5UT8g#>s} zh+&7h*~y4>FVacL@)8rRDry2R0OLIuX4oBU4VJ{PsR4}S;Y%Pv!J%Zo6H?&4FsK?k zq!0lGS-_rRZzy1UylKKsISKXRGKF}-99|OJTBsyF%ym-yQTn)JC1q}f3MgQ0kb%gX zk@UiLVR^7klo#E~Cds@>hhYX}Xc47O%3lg+fZ2%n!XJRI$a~I|!oWK$R3=7<&SELH zi;_X=xg>fKIU$%@$c0f8vN{U%jPx_$51e{T|6H2QsaWpMbacb?ig&~@hv>ab!F7&yel$z(`QhBZ~DpHs+?H-n?gYQ7>F)bub! zQ?Be2hsiHF+_KppqJ}ssy9nTKN=|l&rdVqy8)XRW3-S+YOMru10&G8wH!%1RO|dBq z`wfxdB+(pjUtDIk?_>EQ-6i%P<^{=06&}KWLz23(ev&{3a1$9NM8-qqlzL^X*gR{9 zz!{3{c|{L-XR;iLu@mA8Go4X->{*w|fDjc^#7JOS(6p?RCcKKm2s7+xJBFN?f_S$q z-oi;G-o$Jo)(3naMz#|yV-E^CLM#?6)Pu=D3efv3hNK zsj{9@c1I#K8-f`~S0_fyw>Er)1|-C!^kcqOzKi#|&DCIk~0 zJJK5}BpHQhiZm4R`7uH8b=j~8yM~kvz!-9timXNm(-g5{38W(H2&0pLimU-0CDj~& zTfRkzUZIIug2Mh71Wsh%4SX+=&R~7mZ=@B3Xv)ExB)u<1tPIbFt!4_~3*=5Y>p6w>x{J-q{E7}M>?J)v9p^eFN-e`Dr%|VR8%2&BQsDE8fXU}hpM88ix4l!(jTJw z7|0|`fi-~WAl>m!Nke2SDJM)**g>+jkC>h;5M(76t{icHa{sa2kjf!?g@VAR1Q{)Y z1Yq#72N}^+J_bPsqV-{v7YUd+YfKk#G}+^z1Yb$ygrzPlj}DcYUncz?8`&Xmr--Xl zWCIG2fmObw7#eSNI?OUf)yQ@**8pKd2Rn|3s%o3c&G=CAq{ zE$tmWlRT%#Kau3b;Gm|(?QEr1-8r_+nb6Vcjct<(wFheR_MvvVR9#_j$6ABGPNn3D zdDWF2Cv~*C!}fC~IZe*~-AyX@zqUDxcpN26IFfJw)N|F;vHMNTRYmFwh_&V zf$ow^oByrSx=Z_{(WBcsI>z@*Y+)zPaUJfqmDVxsUENN5#rtWS)73R{yJ3~q+ONG2 zoKWs)qpJR6#{;_=QrGJmJ$fe&T->4V?%u~4JED1?|Hu|G`<4C8Vr9!&cJt(`1jDpK zE3>1F=d|;%2~DlCjc8lzeoeBYs57y(i9JNecFM-sJ>9KsO+ODxV;GW()7{beOKQ8C zI(yo8sK^lQ(C+ReFWa`GSLH+Q+u7RfZ98DQY+u7ZxNKzI(axURO*^bB?sC9({zqc_ z*0D{^J?-tX8}~qUBbvXyfexuJvYqS5xhydoH%Ml=uVb%s~5`TpIlYzp7S*1K*`o7eo` zwJ&e;m)j@hk}dnUyZg87@3eNeIGqz1=L7qV+5kLUZR^-y%~r*SdwWdC_OUy4w6!tH z9i2@ceCdm@UZelTL$hVSh8Uoqs{V+`+_$ye?byHXM}!Y0VYZ{4k0jDS_|3nrw+Ia` z7|}eW@5O4OHnvYHW?QNrf}=&as(HxH&ID(y*X)fInKBVkL|y;=uA8kLTz8*NXJS|L zq<&-8XO1!P+mHb5EIMKuR1R!XGeX$HJD^)8>zMZ5HQNRvu|8lM;I$FWgOQIDow2?g zW31}4!GD|9t`?a*P8*-Kp?%W$V1_hj>#FF0rmp?@a!tF}$E9f^J6H!FPX>KAUT|D% zrE5fUW3P+Uz+J3={%hAKSnnC$iZ*ZZr_wJcx(<@8iNq^J{BX7#YYXOBpV8aMW<*^L zph28|58rFzF0xg1d-ulN(YvR}mgsLLJY?_hYHT|ez^X{r5g;iV>Yv?HV293=0!;UF%u*3hqr z=>vbAKsN_7vUbe|n(1~rVV%!a1L^ICF^PH`4ZZ?G0M%Xrc_6PKU!Q&356EX**r30q z+Ji`F9{%$-ryC1q!k!)Nt;o~SqeVV%+tco=!eMP4?HFX4ezQ+1YBRdoQxkblryWt& zIXoMD#Vz~RH>uC@<9_mBy{lAHJGXXrALt9kz&=%SZBJ+7h~{d&g^e(7ckSrhwY80z zzwNp~@|me_>IOq6waOImuZP21)G&2=l}Qu2#x~o?Kam|R$p04EDZY7ff2FU631^`P zb$%eCM{bZW-6`s-v&rrFd1vb+R$PqrTz^{CuU&V-pRqx&>gW5k6)?|;=B@fv%Olhv zk5m2Vr4Rc~o4S?H>XrokP`*6V8VU7_X%x1(i(<4$Vr@|w3$O0b6&$ovtEmI>YC+~%G84@j%)HH~pS z#du02Ho3tjnyShlb74)^a0iB}-S>LBadCe}9AH400G<572=r^yFJXRvt4_~Fu;I3K zcK5E^tFzhb?&)kFNXF5O?-3{&SC@GG1yFrR2R13vX!+jH6zMcyQzI0<^Yw1@Zt?TY zXXNJkY*g>@2AN>cB=rZAhE>L)pt_oOU%v&_WKAsoa!jx`a~|F$Es-Mk&z*lBeH=D)*k0Aszq+P&sMonCiKmAC%&b{9@)-UAiMa2*zCOHH zYWBK%CV0t#rq%`?`Z@&komVLnU%+x3>Xh z)X#X{$(e`{g5CCL?ZPoexiO9Uv_x;d?5oSb_D~;|9(^O2GydNXYrz2TJaAjSFD}=} z5zWQ^a=5?S|C0?k{mRx{N%srw8=xR?H_FcIFVOq6KF|<% z?%yQpTb$%|I<)5R$cxMT+5jxl%MKW@nJ*TMTMh7RzQd5tK>n!rQcT!&n00~4Hyd%!?l-NREg=j8Klt%C%gGlMoL>Miw9Wiu;HE@HIPciMm5 zPwe;kI{kS`K&gOp#Fpyog0Fj*5zV`dX-ABE`*f00J-TCjOLs?0tEvHB-BaPLfT+9w zYELzf6vVm{o-ELy{Pm;nZ8uEj_4h_JPx((B;`QHlpwV3ani0)SYLcmXv0psde+CYn z#8%$|g{oOlH+EzquYXQ%ZT?!dwY{}#TuV3bWefNLLanK_tJ48i-+%pQZmeAC;}Q?& z(@n$^+N*sRw_AKW58T8Zp6YLV2Hx<9<_r6eZlCX8pPl_A+Iml}gAl`q`(N1|-qYpn z+uA)&*;eZqV*n=arD1vA7f(>DyOY(Q!p?=gyL-yb0YW?szX-_RX&cr>ZP$olzY}Pr zMGEk`*nllWs|6PSL-Sw!ZuG{N>%FLPcK~+`3&%#_Uye_kCJ^KKuMD2ui z-TOQg8&BAel+?cnh{^CWw&i$UwZ;nRKt%7|(U4d{-E$rX}t?l0agd6%>F!K48=IKUx{HoR4zv*WL)|wf4oZrr-N>5jJ$As2D zc{>sHs@1A*Qgc^!7p*gpY!8e@f7l40_4-jCO{(c>pC`(2Hh{cYqkj zW4)GYxudK3yX#yS`NNJAIwU61CGJa~@aWQwmAAd7FlJ0IYkHkQgbnW7{p*1ZHS=X7 zq)}bg4s3iU37ro32$8+_YmC@H!f``BL(PEeQTVldJBeEiJ#0^czdoN`3-^u9U`r%YzGL_z~dLFVcn z&Vgw0o#YLN%gpPm*uL-{@uuXqK0-h}MjHP)e|vRA^VbG`oUn4D(z*|STUx%}=+W}M zTI5enccDe%q(%7g(dHZbvqc}BRX3ITPTd+NE%R0ZjK1Mii#Pb8;a*UouUnM#6JN2H zfU3)`z;@ZdoUKigzP8P}4>h9s+h5QpMkH19s@F}0y#;a`+vNSR$7u_I>|UVbh~~|L z3zV$`Qy56&3VOJ`?=%MAOQk5p|z_5me<8v#ikw~ds+AB znv&ftxIjI^_k87NP3reW--qK$2xd*En*)qD@O;Ot-*R7W+X&;MZaUVV*T9|95l4Z$ymu;bg&0B)a9Pa1>~B%~}-D zU&5UG5P$XgRNSFjs58BD5WWd`heVGJG^4)XBO6fsV>S#S4-YW>RI#t~-|veB^1V0M z+-oAK&)@f4pZ9lLow4Leb+=ahC`w>o_Es7-j_O^vlbCqEei_mH%i09$({fElsOc@k z>a3en{($zHQoY-*&49t{Zc>A|m57yQ<|IIZpt3u)wPJ&9v_IKbRE_C}xrm3q&fplH z`9d>zh&#c-+3K1ku9lx1(0t4WKJ>;|czbwboeDUkZ~65R@Baxl9&e`*<@OGM7(o@A zQ=c!H6ee7k!+tz*fN-&Tv&se%7d{^~*-8|SB;|Cda7-;4b54KZF@S2Wn?mcycO*_U zyvui91Xm1abgeHgzgWY3vj*{u9*t&hQ7V;)YTJQbt)f-85W{bm&dv@}paPElvp?_~ zl;*wiD{A6?U0#JhQ#MquLaQ|)6^JN=*t%atZ-`CwiID!Tm-W+xqAE1)K!(;%ZD98j z*%Q-Se(&1KOSK)?YwGs7toIDYA*$sYY}w}`l!n+Kf2vERW;{6@i?+YV2-=ZkPuJJZ zwc+Sv1_eD5;a7hQu?Sv%e7S|R5@&3ugTaGRZayG1MAFydn84q+6WxJOAzKGFsA;M% zL`S|_S9`(TH7NX>BK=wk@&me!Uf)3mRjGEg@mJJ4y$KzY$Vn0>Z6Xu9*>0cITCGhe z6}?;>+II=zwESoJAsd^BHz0)3v>t>ph5&NsMtp(#+}?maF{1g20mOMtul3Fe?EE|3 z)|!&f)PAIEKT-pUEn$f^Pemfhgz3|LCb=KpZT70eeGSU5K9>xTib&E8Fj*(2s*15R z|Dm5`S|@mXskBeWUe#(>1y7^Bzg4tO%nbC4x!2R)dH^6L*4+eH*H6%B=;&%uOk8!F z1EaSE6LWlXaX_;IgRPb)v_bRyaR0N3l&MLE_3dRb?SkNw|6)6L^dRhN%A~LMm2p?; zgS|w`7|H+ZRsMXTdtHB>R@t~zw7%GLKa{GDK!f^r9=KQg4iaSETmB-ayE7uL?tBl- zP61x4VCy=s^pRP;eW~%a4>Eu{?v++XKlXISdjXDvOES>2$F%eQ!pyZXRK{R0#nH3A zChlvuZ(tVoH|zY^ZOxk)P%89($M5g#3F=7-W~(H*3y{h5@FsP%)li6ps|s=CNuv_TiI$)<4>LqSq-9j4;Y1Vzo61(od9ZC?9!5^XQFuP=8b! zixT^0a7&BiE!3y8twM%=wlJo8kJtR0UiL*FG^-v^P+9K0NexmNh++C(tmMmx=AZUO zqA|t=ldgTKe)x00)eE~LAp-PvM6=bxjT5@OZnB>JwIH=Tab+zur`Exq17vQ9EgRe> z3p&zGvV>%V(11!rJ6Z2P?i=9izY7$tal$(7GSI+^aOZpSVMOmx}VC8%8OEu#hC=w19h({q6q0;;!b$vZJ~S zfxs9K9y2x!qsSk}Bd!~o+j8#2t#zf@m_3PI&kDmVUdp-7aNWzB< zAtoRtL<*ZkilRtJks@UgC9JYY0)GGt*dY*$NZG+AQa1UWbLv!`x>a@G?GK!d{pR+) zb?a80@AEsSGX5_}Msf%ipT~c?Gvf94ekWgs+H1l}_m9yY6^Q?toOUzew1~W{Jz%;D zp%{B=Swm7YmGjw{9Rg2>+pZ`So_3`lQsqpJ#hmR)>+`s;sW|huGrA@H%5!U34 zrMJ{tX#9*ej5!u@m#^fTo;{coRoogK$pqDmY%3bor%1d5b>gk+P;x;!LTu*-7Bo^3 z?jv=bf~v!hsvhzch{uFZ7_imC3kNp{7()g}57Ae!M0BsL8^r0LAzM3_?hdCL?8~;y zlUTVDg{KR+iMO8~xEJ{n1xbAE6#ZMp+A3B4tf4ds zSQC^b!uyb$mH@#-UV0k2gyzmN4PIXBDH_lgFmMT;yB~2F4?=ZY1$`D&nb>EmNS0h4 z5BE4>*8g@S63Dk)+UH0h#>5t-15!NdtKu&fhQ&%kHb`E$tAd2x@wm8>9`fQS^=!On z9Pia|_m6Tl4;taDQBv<}87>5m0OSC%0wX$wV~bL*a{6TMc=R0NP%_N^?|nY_gcX$< z{$BMN|0e&c!ZK^c3%&wavD=se1=3WXCxfRDqcDN;1OXP8x254a>+rptLFm{icf z6|xNVZ;<#%LA5O+r$wOlHP-(*84$$;Aw%GGqPir*4|fufZ^HEzCV3{i9fCykWX~N3 zHtq6cJOx1e_Cc>QCnICeQiP1ONyyS@GVYC>;mT~EQNx@_lf^^%+*px8<01~+-=ENA ziXL1#i6pWRyyERPHyorkD z?RXc>>5t-9cvIp?go1}kKwQ66b+`7!0(^)=MSVAyB!4ISYQ7*@B1*l&;<*gDFr%#3 z4p*;8N;X`l``tsnUJQY*J6nViow>8?5F%)fJ!*FLHxDENwm!av*}Y?HU*hYZD!#ld z9}6<)gZR{XSrGRcIFA%`@g=CAtCcr;Tuv-ylvjrb;vYmrcr_LNo)j|@r5UKf+dCAnv zf&2X<`Q#eHctV-HZ1e%ic{*+^1=lep$&31`PU0bIZGlWF{hSJ~Qh|!QQPTt!;m$5D zi9kwaP%v@Z7T&9E|3D)ZLi{3ke+-d3SRE$KYyR=r(mI*pqkXwHp0br$#zjlk3Rdd6 zC&LURZH=Hr!9f=&JWsqF;jxr4LCPKo$t587M&mvDF>qhcWewH>qQBLnr|Pp5`={tW zpVuE+byv?|42v>Pxg|9`2|I+H+Pym+A>X&NaVOs~FTHpbuA=gVIwydF&>dq}pemeM z|KseX1=ohdzroJzAD3O2kHbHw;i2_i06KO?R0`S%iM#uPbNzHSOTNJ077AM#v(UZ~ z$(?uu{n5SeRg?o#M~;T-dyww{|BSXMW1{L1ny^_P-yXh-_B-yIp>q>Gt-B%A3bBcC zZXGblF3H5Ef{w_a0}HYzI!KJE`n@87+ns~`K*x*u>)xBDr-vI2*bkrah}8#F?1x}J zL<*9E=+;%(a>G+VTTM0(Joi*mp%l^(_-ot%V^&Jgy8N0DoA45`&DvHAW5F>2d&Rt@ zFa81x0><|(pg7bfCV{$;;Qsl>V1Ks0T-Fm%Lu)JWvEi=Wn!&I^)$0-rBhcoMAh06B zEJ2_vgn1y^<7Hu0`9|YoV%>+*kp?!3`pdEs<%o8&ZX9{lrx57-0|M`CZ%9%}%j8z` zPY+J8fijl+IAB(?2<%r!Tj?8p<#lBV!Zt&x%ID50fvcPUdsZY+`Xn_sC`8X93f5Jj zEM{|ZkDgiCyoOHCzA1-_2Fb;EtU`#|58Ry^zjhYLYriyaBvWv<#B62^x`o@2a2o*j zBA#$h@XPHtr-&2}Lb3f*C>J#6sfAp6rZ^T3d)l`a<>ukAEbECl+!Vy46cO0JXwZx{ z0*Mn8$s*lvef9?a946|2Xzks;FTa? zh8rKrUQ8e09&bBVf~xh+Dv6d*M>v|SQqMA!xsHDunUebucU+;qer`}trvapb+XR|H zZ9gAjsT*?nzS$ zfnjo662abM3&n2Xr^3o6879m#bmDxDMBMRfl>3!ghV|yCHQDysYLqW@uW^r5*F)(G zCNGcBg%vvA`jk zTO;?N-k=S+o?+3ENW%htqXV9p6g&7-Z!%nvmKCcvHT*F@wcU?u@k@`f5!WyIip$(S zyh6p`+^3OS>*b0V?s>e2mFF9kJfZ!rTHoGzi=d`|o8zi=@~*sZiSM>R>^0nhOWDth zdnO7|Zw}H0HT>6BG>(8t8X8sW=iTuJUak*vl<*R@D56f$WNGlvaV%~exaW(nWK~GH z(5(sAdt4mPwjkJmR|4E+-xkRTg8*o+ck`>O-8_w5V7OJ<{!SOARqOKJU25VCmHWkP za)%;p-P5l0THS+_Djt)$J*o}D-L(Kbh{e__>Vg2AA!Kgl^68LjZjc5=zd&EjRtS@r z6(!G%1GeB{tloX}?-_}~55EY!{A7ei*~{>3=TO8)z225SbU}93tA+39P`l5S$3~ti z;M^6^FufOea~71Z!V5&<@ndwIL+bF7E(5hRqK zCYBKQdttaI<>%RD(yF1t9K9q_39T&j00ji`qC17aO~m@&pF*@~eBOZ@sNh zHH2son|ZC7?IDG6cZa|r&1CwDd%fx_#Mr%ut57$ZsRCLOM<8-J-H|(O!A2=3JJ62t z;rwkNX*o-vn;+u4Jrb+c9sZ0`5dzE_`E^gv-Mj{2=$*SryR>!=Rzb|mV4Ec2Mn#fM zt}AG-$l4Z*!xm<^t`cSWR3Atn2&6D@QsbBiN4$VyOReS%Yb!NyUpjV-qk!2= zw*@>;{Nz65yFf~+XNX)55=|SDXc9+1=VankfJABp zxQENdUi1HZPxU$N|AGNr@qlv=BXq_kU1CY>S zUCC0${s4zp_;ZCA5tR$@$1e`tGina^9CgaQdLv{_{v}{(Vn>zyB3`>P_tB zKX8H|Y%c*ZEGMt2eqg>o|Dd^v1^%BE6X>atUC06PM&&A^X2Ez4wh7ag-r#=@+_!TP zlYDWNP?w@iCFUh$S5f4ZbqU+Ggy;9`G`nK#Gh{wpA zAwMx21q6{_o?t8Er$&3{HFnh3PEJnQ*oo!@kbi6?NLYT9Qx2*x&Uc@ z24NZS=Qe^BOj4YmiUpC?1QMNUcYQ~WQ-J#|M|sT1fE~DR1sT}QSS%&9U@$rUZ51cV z;V=i1Iufxh9s(D?S&7>U0lh{Y@gL42-sj)DY0-9+VFL0Sa2S9^JQuT>gB5I_^%fW~Ma>#Ns{7i~9O z3IB5)uga5`*q{YJC+w4F&l&y9L5A>tb6XD<8OS^u4eg@CE@%2H;{6uc#3C?xuT3o^ z_~IJ0kHDl4`}Bfx21V-z?gzO8U&-D?+i7un5-I;Y+^&GUC(HJir5((G_a!;5VBr2X-}bqLR2-_(g|B3$g>~&v zkkJ_&xB{54?*I7ik3w$NGA5Tt4g_LKV8I0+PtNVbVPgmm&lZ6h-cl+mUd768Te zE*cD3@eW~AlWP%+$Q%1+oKo^0`2?S?m~t}Z$>boihO9DlxoxP)>E15%VS}g}>hW3! zlu0YRf)qE&ATo|MBhR9NVo&mS@v*hnS8DfgHp$;$1v}=h6k}Vd$RV)U=+EBj!)h?CMHde^Ns(cVwyLcT_t)7>;9Vq1#Cp0=;Y7R<qw&JY zD^+b}&ANlHT3&^@BYGLk3ohjj;j_YzPUm!P{G;l;zQ6K~h)sN=%^i}}=UJ-10&lG# zcmDbaCJ*b6IRO)>(;^+0iKb4!KRHrhq7-3~15}S{f}MDbV&GPaeiLPLOG&k5^{1k6 z)IuTZR6duS`?OXt)GvD+FOXO!hd&txL5{+-!X@N;Z(ahlal8xQGooP7P z1Unh$Q?@Eq6YJ58LLea@pAFH8s-*cyS)8P5JDjw8DvjmX!h(HtBHSOM;m?<~3%^PATjNO-AVe%xDR-;_Gz0VVG`R z8{%+-$E11vU-hKg;OzzZL4liAswR}@9#t(ypLXD?C7wnMg~Eq^1cgqzyIYr9tyN%j=qFw`P?2~75%^>a++OxZR_@39MoraS2)l$C!s z=EkK3wBgNmC92v5CJVe&vJf8Rx^ISd$Z^nJ!Dj?Iqz$)3NVIF2Z$nnvr^*wAzZ|$P z%~#fn=T5n-DE^GlG>~?(O++vn-7PuKfj#(6ly|{A);=lg-i)uzBw9p^MH8u4wsA+_ zQJ~{mfNY_a2w1@u5#Bo{1Yqb>0Ni}PS}NbmWk%u6#|PCE1`VX%Grai^`Bdjqk0A-K zM;E0pZdAx+zhju_Ri9Tg_K|#0os;i%YYC;_L(1azpt-$+m{aaN=-X^8;RYRTCSMtP zSwiST)<6Ps@v=om&!_omDR9o`9Pt6a^VaLDeRtQeS@D&%0DGUMdp2J>bAFJByo*TX z`ef(=gPze|l+O>rvOS#LLh^gqe)SO-GtaFAGr|{AABrE0h}6z_YOr!=x#JFo$Y8K$ zf-$zNzN+9sSLUEOA8i`6hP{Y$?Z#91i_hJ|dD}Cj%Vy2S6C39rchP(z9qbZH; ziso6USfFdN--tm=Hv`&e{Zt_AH=_{?*z{dKDlyl`u5*M&N}Lv53$ zzS|y2Qsm@at$Jb1cl+|Hm7%#LUdU$Aw-&rUwf{PqsVO5IL09D8*~@b~w1&C)Z(sZ0 z*T4R&fBxp#FTCx(x1N66-j{#&-|u_lEvH}q{14yzkN@%MM}PUPfB)W3zq|6q{{u4a B_6z_3 From 04f8f8bff01a478bc82e3d4a451335629326beee Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Thu, 2 Jan 2025 05:32:40 -0500 Subject: [PATCH 5/8] fix test --- .../TestDifferentServiceNames_service_a_profile.json | 6 +++--- .../TestDifferentServiceNames_service_b_profile.json | 6 +++--- .../testdata/TestDifferentServiceNames_unknown_profile.json | 6 +++--- pkg/ingester/otlp/testdata/TestSampleAttributes.json | 5 +++-- pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json | 5 +++-- 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json index e7411b9a6c..7241c0f1ab 100644 --- a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json @@ -52,7 +52,7 @@ ] } ], - "time_nanos": 239, - "duration_nanos": 10000000000, - "period": 10000000 + "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 index edfa5aa484..60e4181cc2 100644 --- a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json @@ -52,7 +52,7 @@ ] } ], - "time_nanos": 239, - "duration_nanos": 10000000000, - "period": 10000000 + "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 index 2df1efd7c5..2907653016 100644 --- a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json @@ -52,7 +52,7 @@ ] } ], - "time_nanos": 239, - "duration_nanos": 10000000000, - "period": 10000000 + "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 index 89d2076216..ed06815f83 100644 --- a/pkg/ingester/otlp/testdata/TestSampleAttributes.json +++ b/pkg/ingester/otlp/testdata/TestSampleAttributes.json @@ -97,6 +97,7 @@ ] } ], - "time_nanos": 239, - "duration_nanos": 10000000000 + "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 index 3b225a3f80..648a9e9698 100644 --- a/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json +++ b/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json @@ -46,6 +46,7 @@ ] } ], - "time_nanos": 239, - "duration_nanos": 10000000000 + "time_nanos": "239", + "period": "0", + "duration_nanos": "10000000000" } \ No newline at end of file From 154a8b452b38fa2b0e2913ec84ad83242d2073ee Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Thu, 2 Jan 2025 06:38:03 -0500 Subject: [PATCH 6/8] make fmt --- pkg/ingester/otlp/ingest_handler_test.go | 3 ++- pkg/test/integration/helper.go | 5 +++-- pkg/test/integration/ingest_otlp_test.go | 17 ++++++++++------- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/pkg/ingester/otlp/ingest_handler_test.go b/pkg/ingester/otlp/ingest_handler_test.go index 3d05a5fd3b..0f723b16ae 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" - phlaremodel "github.com/grafana/pyroscope/pkg/model" "os" "testing" + phlaremodel "github.com/grafana/pyroscope/pkg/model" + "github.com/grafana/pyroscope/pkg/distributor/model" "github.com/prometheus/prometheus/util/testutil" diff --git a/pkg/test/integration/helper.go b/pkg/test/integration/helper.go index e732242081..7d572efbaf 100644 --- a/pkg/test/integration/helper.go +++ b/pkg/test/integration/helper.go @@ -24,6 +24,9 @@ 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" @@ -37,8 +40,6 @@ import ( "github.com/grafana/pyroscope/pkg/phlare" "github.com/grafana/pyroscope/pkg/pprof" "github.com/grafana/pyroscope/pkg/util/connectgrpc" - "google.golang.org/grpc" - "google.golang.org/grpc/credentials/insecure" ) type PyroscopeTest struct { diff --git a/pkg/test/integration/ingest_otlp_test.go b/pkg/test/integration/ingest_otlp_test.go index 2f098735b7..82bb97d063 100644 --- a/pkg/test/integration/ingest_otlp_test.go +++ b/pkg/test/integration/ingest_otlp_test.go @@ -2,14 +2,16 @@ package integration import ( "context" - 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" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" "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 { @@ -104,12 +106,13 @@ func TestIngestOTLP(t *testing.T) { NoTime: true, NoDuration: true, }) + assert.NoError(t, err) pprofDumpFileName := strings.ReplaceAll(metric.expectedJsonPath, ".json", ".pprof.pb.bin") // for debugging pprof, err := resp.Msg.MarshalVT() - require.NoError(t, err) + assert.NoError(t, err) err = os.WriteFile(pprofDumpFileName, pprof, 0644) - require.NoError(t, err) + assert.NoError(t, err) assert.JSONEq(t, string(expectedBytes), actualStr) From 21eb83c720c2a40bd5f185450047a39f2602121e Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Fri, 3 Jan 2025 01:05:33 -0500 Subject: [PATCH 7/8] compact stringer --- pkg/ingester/otlp/ingest_handler_test.go | 30 +- ...fferentServiceNames_service_a_profile.json | 36 +- ...fferentServiceNames_service_b_profile.json | 36 +- ...DifferentServiceNames_unknown_profile.json | 36 +- .../otlp/testdata/TestSampleAttributes.json | 74 +- .../testdata/TestSymbolizedFunctionNames.json | 34 +- pkg/og/convert/pprof/strprofile/profile.go | 201 +- pkg/test/integration/ingest_otlp_test.go | 3 +- ...l-ebpf-profiler-pyrosymbolized-docker.json | 9252 +--- ...-ebpf-profiler-pyrosymbolized-unknown.json | 17052 ++----- .../otel-ebpf-profiler-unsymbolized.json | 37280 +++------------- 11 files changed, 9715 insertions(+), 54319 deletions(-) diff --git a/pkg/ingester/otlp/ingest_handler_test.go b/pkg/ingester/otlp/ingest_handler_test.go index 0f723b16ae..509f0dc8e8 100644 --- a/pkg/ingester/otlp/ingest_handler_test.go +++ b/pkg/ingester/otlp/ingest_handler_test.go @@ -209,14 +209,17 @@ 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 jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) - require.NoError(t, err) + assert.NoError(t, err) expectedJSON := readJSONFile(t, "testdata/TestSymbolizedFunctionNames.json") - require.JSONEq(t, expectedJSON, jsonStr) + assert.JSONEq(t, expectedJSON, jsonStr) + + os.WriteFile("testdata/TestSymbolizedFunctionNames.json", []byte(jsonStr), 0666) + } func TestSampleAttributes(t *testing.T) { @@ -306,9 +309,10 @@ func TestSampleAttributes(t *testing.T) { gp := profiles[0].Series[0].Samples[0].Profile.Profile jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) - require.NoError(t, err) + assert.NoError(t, err) expectedJSON := readJSONFile(t, "testdata/TestSampleAttributes.json") - require.JSONEq(t, expectedJSON, jsonStr) + assert.Equal(t, expectedJSON, jsonStr) + } func TestDifferentServiceNames(t *testing.T) { @@ -455,16 +459,17 @@ func TestDifferentServiceNames(t *testing.T) { require.Equal(t, 3, len(profiles)) expectedProfiles := map[string]string{ - "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-a\"}": readJSONFile(t, "testdata/TestDifferentServiceNames_service_a_profile.json"), - "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-b\"}": readJSONFile(t, "testdata/TestDifferentServiceNames_service_b_profile.json"), - "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"unknown\"}": readJSONFile(t, "testdata/TestDifferentServiceNames_unknown_profile.json"), + "{__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)) series := phlaremodel.Labels(p.Series[0].Labels).ToPrometheusLabels().String() assert.Contains(t, expectedProfiles, series) - expectedJson := expectedProfiles[series] + expectedJsonPath := expectedProfiles[series] + expectedJson := readJSONFile(t, expectedJsonPath) gp := p.Series[0].Samples[0].Profile.Profile @@ -478,9 +483,12 @@ func TestDifferentServiceNames(t *testing.T) { assert.Equal(t, int64(10000000), gp.Period) jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) - require.NoError(t, err) - require.JSONEq(t, expectedJson, jsonStr) + assert.NoError(t, err) + assert.JSONEq(t, expectedJson, jsonStr) assert.NotContains(t, jsonStr, "service.name") + + os.WriteFile(expectedJsonPath, []byte(jsonStr), 0666) + } } diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json index 7241c0f1ab..df2c46afa6 100644 --- a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json @@ -11,45 +11,19 @@ { "address": "0x1100", "lines": [ - { - "function": { - "name": "serviceA_func1", - "system_name": "serviceA_func1", - "filename": "service_a.go" - }, - "line": 10 - } + "serviceA_func1[serviceA_func1]@service_a.go:10" ], - "mapping": { - "start": "0x1000", - "limit": "0x2000", - "offset": "0x0", - "filename": "service-a.so" - } + "mapping": "0x1000-0x2000@0x0 service-a.so()" }, { "address": "0x1200", "lines": [ - { - "function": { - "name": "serviceA_func2", - "system_name": "serviceA_func2", - "filename": "service_a.go" - }, - "line": 20 - } + "serviceA_func2[serviceA_func2]@service_a.go:20" ], - "mapping": { - "start": "0x1000", - "limit": "0x2000", - "offset": "0x0", - "filename": "service-a.so" - } + "mapping": "0x1000-0x2000@0x0 service-a.so()" } ], - "values": [ - 1000000000 - ] + "values": "1000000000" } ], "time_nanos": "239", diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json index 60e4181cc2..514a2647ee 100644 --- a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json @@ -11,45 +11,19 @@ { "address": "0x2100", "lines": [ - { - "function": { - "name": "serviceB_func1", - "system_name": "serviceB_func1", - "filename": "service_b.go" - }, - "line": 30 - } + "serviceB_func1[serviceB_func1]@service_b.go:30" ], - "mapping": { - "start": "0x2000", - "limit": "0x3000", - "offset": "0x0", - "filename": "service-b.so" - } + "mapping": "0x2000-0x3000@0x0 service-b.so()" }, { "address": "0x2200", "lines": [ - { - "function": { - "name": "serviceB_func2", - "system_name": "serviceB_func2", - "filename": "service_b.go" - }, - "line": 40 - } + "serviceB_func2[serviceB_func2]@service_b.go:40" ], - "mapping": { - "start": "0x2000", - "limit": "0x3000", - "offset": "0x0", - "filename": "service-b.so" - } + "mapping": "0x2000-0x3000@0x0 service-b.so()" } ], - "values": [ - 2000000000 - ] + "values": "2000000000" } ], "time_nanos": "239", diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json index 2907653016..cada8fe8bc 100644 --- a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json @@ -11,45 +11,19 @@ { "address": "0xef0", "lines": [ - { - "function": { - "name": "serviceC_func3", - "system_name": "serviceC_func3", - "filename": "service_c.go" - }, - "line": 50 - } + "serviceC_func3[serviceC_func3]@service_c.go:50" ], - "mapping": { - "start": "0x4000", - "limit": "0x5000", - "offset": "0x0", - "filename": "service-c.so" - } + "mapping": "0x4000-0x5000@0x0 service-c.so()" }, { "address": "0xef0", "lines": [ - { - "function": { - "name": "serviceC_func3", - "system_name": "serviceC_func3", - "filename": "service_c.go" - }, - "line": 50 - } + "serviceC_func3[serviceC_func3]@service_c.go:50" ], - "mapping": { - "start": "0x4000", - "limit": "0x5000", - "offset": "0x0", - "filename": "service-c.so" - } + "mapping": "0x4000-0x5000@0x0 service-c.so()" } ], - "values": [ - 7000000000 - ] + "values": "7000000000" } ], "time_nanos": "239", diff --git a/pkg/ingester/otlp/testdata/TestSampleAttributes.json b/pkg/ingester/otlp/testdata/TestSampleAttributes.json index ed06815f83..cc6eb49297 100644 --- a/pkg/ingester/otlp/testdata/TestSampleAttributes.json +++ b/pkg/ingester/otlp/testdata/TestSampleAttributes.json @@ -11,90 +11,40 @@ { "address": "0x1e", "lines": [ - { - "function": { - "name": "firefox.so 0x1e" - } - } + "firefox.so 0x1e[]@:0" ], - "mapping": { - "start": "0x1000", - "limit": "0x1000", - "offset": "0x0", - "filename": "firefox.so" - } + "mapping": "0x1000-0x1000@0x0 firefox.so()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "firefox.so 0x2e" - } - } + "firefox.so 0x2e[]@:0" ], - "mapping": { - "start": "0x1000", - "limit": "0x1000", - "offset": "0x0", - "filename": "firefox.so" - } + "mapping": "0x1000-0x1000@0x0 firefox.so()" } ], - "values": [ - 239 - ], - "labels": [ - { - "key": "process", - "value": "firefox" - } - ] + "values": "239", + "labels": "process=firefox" }, { "locations": [ { "address": "0x3e", "lines": [ - { - "function": { - "name": "chrome.so 0x3e" - } - } + "chrome.so 0x3e[]@:0" ], - "mapping": { - "start": "0x1000", - "limit": "0x1000", - "offset": "0x0", - "filename": "chrome.so" - } + "mapping": "0x1000-0x1000@0x0 chrome.so()" }, { "address": "0x4e", "lines": [ - { - "function": { - "name": "chrome.so 0x4e" - } - } + "chrome.so 0x4e[]@:0" ], - "mapping": { - "start": "0x1000", - "limit": "0x1000", - "offset": "0x0", - "filename": "chrome.so" - } + "mapping": "0x1000-0x1000@0x0 chrome.so()" } ], - "values": [ - 61423 - ], - "labels": [ - { - "key": "process", - "value": "chrome" - } - ] + "values": "61423", + "labels": "process=chrome" } ], "time_nanos": "239", diff --git a/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json b/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json index 648a9e9698..979b52da62 100644 --- a/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json +++ b/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json @@ -11,42 +11,22 @@ { "address": "0x1e0", "lines": [ - { - "function": { - "name": "file1.so 0x1e0" - } - } + "file1.so 0x1e0[]@:0" ], - "mapping": { - "start": "0x1000", - "limit": "0x1000", - "offset": "0x0", - "filename": "file1.so" - } + "mapping": "0x1000-0x1000@0x0 file1.so()" }, { "address": "0x2f0", "lines": [ - { - "function": { - "name": "file1.so 0x2f0" - } - } + "file1.so 0x2f0[]@:0" ], - "mapping": { - "start": "0x1000", - "limit": "0x1000", - "offset": "0x0", - "filename": "file1.so" - } + "mapping": "0x1000-0x1000@0x0 file1.so()" } ], - "values": [ - 239 - ] + "values": "239" } ], "time_nanos": "239", - "period": "0", - "duration_nanos": "10000000000" + "duration_nanos": "10000000000", + "period": "0" } \ No newline at end of file diff --git a/pkg/og/convert/pprof/strprofile/profile.go b/pkg/og/convert/pprof/strprofile/profile.go index 9c421f9a34..ebe2403758 100644 --- a/pkg/og/convert/pprof/strprofile/profile.go +++ b/pkg/og/convert/pprof/strprofile/profile.go @@ -3,20 +3,23 @@ package strprofile import ( "encoding/json" "fmt" + "sort" "strconv" + "strings" profilev1 "github.com/grafana/pyroscope/api/gen/proto/go/google/v1" ) -// Options controls what information is included in the stringified output type Options struct { NoPrettyPrint bool NoDuration bool NoTime bool + NoCompact bool + IncludeIDs bool } -// Location represents a denormalized location type Location struct { + ID uint64 `json:"id,omitempty"` Address string `json:"address,omitempty"` Lines []Line `json:"lines,omitempty"` Mapping *Mapping `json:"mapping,omitempty"` @@ -28,6 +31,7 @@ type Line struct { } type Function struct { + ID uint64 `json:"id,omitempty"` Name string `json:"name"` SystemName string `json:"system_name,omitempty"` Filename string `json:"filename,omitempty"` @@ -35,6 +39,7 @@ type Function struct { } type Mapping struct { + ID uint64 `json:"id,omitempty"` Start string `json:"start"` Limit string `json:"limit"` Offset string `json:"offset,omitempty"` @@ -66,8 +71,51 @@ type Profile struct { Period string `json:"period,omitempty"` } -// Stringify converts a profile to a human-readable JSON representation +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), } @@ -78,7 +126,6 @@ func Stringify(p *profilev1.Profile, opts Options) (string, error) { sp.DurationNanos = fmt.Sprintf("%d", p.DurationNanos) } - // Process sample types for _, st := range p.SampleType { sp.SampleTypes = append(sp.SampleTypes, SampleType{ Type: p.StringTable[st.Type], @@ -97,13 +144,11 @@ func Stringify(p *profilev1.Profile, opts Options) (string, error) { mappingMap[m.Id] = m } - // Process samples for _, sample := range p.Sample { ss := Sample{ Values: sample.Value, } - // Process locations for _, locID := range sample.LocationId { loc := findLocation(p.Location, locID) if loc == nil { @@ -113,31 +158,40 @@ func Stringify(p *profilev1.Profile, opts Options) (string, error) { sLoc := Location{ Address: fmt.Sprintf("0x%x", loc.Address), } + if opts.IncludeIDs { + sLoc.ID = loc.Id + } - // Process mapping if loc.MappingId != 0 { if mapping := mappingMap[loc.MappingId]; mapping != nil { - sLoc.Mapping = &Mapping{ + 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 } } - // Process lines 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: &Function{ - Name: p.StringTable[fn.Name], - SystemName: p.StringTable[fn.SystemName], - Filename: p.StringTable[fn.Filename], - StartLine: fn.StartLine, - }, - Line: line.Line, + Function: f, + Line: line.Line, } sLoc.Lines = append(sLoc.Lines, sLine) } @@ -146,7 +200,6 @@ func Stringify(p *profilev1.Profile, opts Options) (string, error) { ss.Locations = append(ss.Locations, sLoc) } - // Process labels if len(sample.Label) > 0 { ss.Labels = make([]Label, 0, len(sample.Label)) for _, label := range sample.Label { @@ -166,22 +219,116 @@ func Stringify(p *profilev1.Profile, opts Options) (string, error) { sp.Samples = append(sp.Samples, ss) } + return sp +} - var jsonData []byte - var err error - if !opts.NoPrettyPrint { - jsonData, err = json.MarshalIndent(sp, "", " ") - } else { - jsonData, err = json.Marshal(sp) +func ToCompactProfile(p *profilev1.Profile, opts Options) CompactProfile { + sp := CompactProfile{ + Period: fmt.Sprintf("%d", p.Period), } - if err != nil { - return "", err + if !opts.NoTime { + sp.TimeNanos = fmt.Sprintf("%d", p.TimeNanos) + } + if !opts.NoDuration { + sp.DurationNanos = fmt.Sprintf("%d", p.DurationNanos) } - return string(jsonData), nil + 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 } -// Helper function to find a location by ID func findLocation(locations []*profilev1.Location, id uint64) *profilev1.Location { for _, loc := range locations { if loc.Id == id { diff --git a/pkg/test/integration/ingest_otlp_test.go b/pkg/test/integration/ingest_otlp_test.go index 82bb97d063..50f6dfe2af 100644 --- a/pkg/test/integration/ingest_otlp_test.go +++ b/pkg/test/integration/ingest_otlp_test.go @@ -114,7 +114,8 @@ func TestIngestOTLP(t *testing.T) { err = os.WriteFile(pprofDumpFileName, pprof, 0644) assert.NoError(t, err) - assert.JSONEq(t, string(expectedBytes), actualStr) + assert.Equal(t, string(expectedBytes), actualStr) + os.WriteFile(metric.expectedJsonPath, []byte(actualStr), 0644) } }) diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json index 20ce368743..3628597cbf 100644 --- a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json @@ -11,11397 +11,5133 @@ { "address": "0x86b901", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dd38", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae8b", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b96b", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xb3ae73", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9b8", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b917", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dd41", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae8b", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8e4", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8de", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b933", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9d0", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dd49", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae8b", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8f4", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b977", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86ba05", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b962", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86bb1b", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86bb61", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8a6", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dd4f", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae8b", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b909", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86bb5d", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9eb", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8d7", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86ba08", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8b8", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dda7", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8af", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b841", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dd47", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae8b", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8cc", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9d9", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86ba17", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x85dcb0", "lines": [ - { - "function": { - "name": "_copy_to_iter" - } - } + "_copy_to_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1504103", "lines": [ - { - "function": { - "name": "srso_alias_safe_ret" - } - } + "srso_alias_safe_ret[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b959", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b97a", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9b3", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xb3ae8e", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xb3ae93", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86bb53", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9bd", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b8c8", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b986", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b88b", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b921", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b956", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x86b9a7", "lines": [ - { - "function": { - "name": "chacha_permute" - } - } + "chacha_permute[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86bb50", "lines": [ - { - "function": { - "name": "chacha_block_generic" - } - } + "chacha_block_generic[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3ae70", "lines": [ - { - "function": { - "name": "get_random_bytes_user" - } - } + "get_random_bytes_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb3c9f8", "lines": [ - { - "function": { - "name": "urandom_read_iter" - } - } + "urandom_read_iter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e4d8e", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5ca2", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf735f", "lines": [ - { - "function": { - "name": "read", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x405275", "lines": [ - { - "function": { - "name": "cat 0x405275" - } - } + "cat 0x405275[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x402462", "lines": [ - { - "function": { - "name": "cat 0x402462" - } - } + "cat 0x402462[]@:0" ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" }, { "address": "0x2083f", "lines": [ - { - "function": { - "name": "__libc_start_main", - "filename": "/lib/x86_64-linux-gnu/libc-2.23.so" - } - } + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" ], - "mapping": { - "start": "0x0", - "limit": "0x1c0000", - "offset": "0x7cf4f83a2000", - "filename": "libc-2.23.so", - "build_id": "30773be8cf5bfed9d910c8473dd44eaab2e705ab" - } + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" }, { "address": "0x4025d8", "lines": [ - { - "function": { - "name": "cat 0x4025d8" - } - } - ], - "mapping": { - "start": "0x400000", - "limit": "0x40c000", - "offset": "0x0", - "filename": "cat", - "build_id": "2efc66e3f4cae30a989532b37b1d5dc81026be68" - } + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" } ], - "values": [ - 50000000 - ] + "values": "50000000" } ], "period": "1000000000" diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json index d94320ca4a..09fbe6f449 100644 --- a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json @@ -11,20730 +11,8702 @@ { "address": "0x0", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "Merge.kt" - } - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "FlowValueWrapperInternal.kt" - }, - "line": 39 - } + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x181", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", - "filename": "SharedFlow.kt" - }, - "line": 392 - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", - "filename": "SharedFlow.kt" - } - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x61", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 1034 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@CoroutineScheduler.kt:1034" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 999 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@CoroutineScheduler.kt:999" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 758 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:758" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.pollGlobalQueues()", - "filename": "CoroutineScheduler.kt" - }, - "line": 1040 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.pollGlobalQueues()[]@CoroutineScheduler.kt:1040" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x61", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 1034 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@CoroutineScheduler.kt:1034" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 999 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@CoroutineScheduler.kt:999" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 758 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:758" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x35", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugCoroutineInfoImpl.updateState$kotlinx_coroutines_core(java.lang.String, kotlin.coroutines.Continuation, boolean)", - "filename": "DebugCoroutineInfoImpl.kt" - }, - "line": 89 - } + "void kotlinx.coroutines.debug.internal.DebugCoroutineInfoImpl.updateState$kotlinx_coroutines_core(java.lang.String, kotlin.coroutines.Continuation, boolean)[]@DebugCoroutineInfoImpl.kt:89" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6e", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)", - "filename": "DebugProbesImpl.kt" - }, - "line": 454 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@DebugProbesImpl.kt:454" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3e", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)", - "filename": "DebugProbesImpl.kt" - }, - "line": 428 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@DebugProbesImpl.kt:428" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)", - "filename": "DebugProbesImpl.kt" - }, - "line": 419 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@DebugProbesImpl.kt:419" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)", - "filename": "DebugProbesKt.java" - }, - "line": 21 - } + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@DebugProbesKt.java:21" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 28 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xe", "lines": [ - { - "function": { - "name": "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 120 - } + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@CoroutineContextImpl.kt:120" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.UndispatchedCoroutine kotlinx.coroutines.CoroutineContextKt.updateUndispatchedCompletion(kotlin.coroutines.Continuation, kotlin.coroutines.CoroutineContext, java.lang.Object)", - "filename": "CoroutineContext.kt" - }, - "line": 145 - } + "kotlinx.coroutines.UndispatchedCoroutine kotlinx.coroutines.CoroutineContextKt.updateUndispatchedCompletion(kotlin.coroutines.Continuation, kotlin.coroutines.CoroutineContext, java.lang.Object)[]@CoroutineContext.kt:145" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x65", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 224 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:224" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)", - "filename": "ThreadContext.kt" - }, - "line": 31 - } + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)[]@ThreadContext.kt:31" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)", - "filename": "ThreadContext.kt" - }, - "line": 55 - } + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)[]@ThreadContext.kt:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.internal.DispatchedContinuation.\u003cinit\u003e(kotlinx.coroutines.CoroutineDispatcher, kotlin.coroutines.Continuation)", - "filename": "DispatchedContinuation.kt" - }, - "line": 24 - } + "void kotlinx.coroutines.internal.DispatchedContinuation.\u003cinit\u003e(kotlinx.coroutines.CoroutineDispatcher, kotlin.coroutines.Continuation)[]@DispatchedContinuation.kt:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "kotlin.coroutines.Continuation kotlinx.coroutines.CoroutineDispatcher.interceptContinuation(kotlin.coroutines.Continuation)", - "filename": "CoroutineDispatcher.kt" - }, - "line": 155 - } + "kotlin.coroutines.Continuation kotlinx.coroutines.CoroutineDispatcher.interceptContinuation(kotlin.coroutines.Continuation)[]@CoroutineDispatcher.kt:155" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.ContinuationImpl.intercepted()", - "filename": "ContinuationImpl.kt" - }, - "line": 112 - } + "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.ContinuationImpl.intercepted()[]@ContinuationImpl.kt:112" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.intercepted(kotlin.coroutines.Continuation)", - "filename": "IntrinsicsJvm.kt" - }, - "line": 182 - } + "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.intercepted(kotlin.coroutines.Continuation)[]@IntrinsicsJvm.kt:182" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.JobSupport.joinSuspend(kotlin.coroutines.Continuation)", - "filename": "JobSupport.kt" - }, - "line": 1536 - } + "java.lang.Object kotlinx.coroutines.JobSupport.joinSuspend(kotlin.coroutines.Continuation)[]@JobSupport.kt:1536" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.JobSupport.join(kotlin.coroutines.Continuation)", - "filename": "JobSupport.kt" - }, - "line": 546 - } + "java.lang.Object kotlinx.coroutines.JobSupport.join(kotlin.coroutines.Continuation)[]@JobSupport.kt:546" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9f", "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": 26 - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:26" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "FlowValueWrapperInternal.kt" - }, - "line": 39 - } + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x181", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", - "filename": "SharedFlow.kt" - }, - "line": 392 - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", - "filename": "SharedFlow.kt" - } - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)", - "filename": "DebugProbesImpl.kt" - }, - "line": 461 - } + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@DebugProbesImpl.kt:461" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x73", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)", - "filename": "DebugProbesImpl.kt" - }, - "line": 456 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@DebugProbesImpl.kt:456" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3e", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)", - "filename": "DebugProbesImpl.kt" - }, - "line": 428 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@DebugProbesImpl.kt:428" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)", - "filename": "DebugProbesImpl.kt" - }, - "line": 419 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@DebugProbesImpl.kt:419" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)", - "filename": "DebugProbesKt.java" - }, - "line": 21 - } + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@DebugProbesKt.java:21" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 28 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13d", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 102 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:102" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "int kotlinx.coroutines.internal.LockFreeLinkedListNode.tryCondAddNext(kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp)", - "filename": "LockFreeLinkedList.kt" - } - } + "int kotlinx.coroutines.internal.LockFreeLinkedListNode.tryCondAddNext(kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp)[]@LockFreeLinkedList.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x35", "lines": [ - { - "function": { - "name": "boolean kotlinx.coroutines.JobSupport.addLastAtomic(java.lang.Object, kotlinx.coroutines.NodeList, kotlinx.coroutines.JobNode)", - "filename": "JobSupport.kt" - }, - "line": 1530 - } + "boolean kotlinx.coroutines.JobSupport.addLastAtomic(java.lang.Object, kotlinx.coroutines.NodeList, kotlinx.coroutines.JobNode)[]@JobSupport.kt:1530" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.JobSupport.invokeOnCompletion(boolean, boolean, kotlin.jvm.functions.Function1)", - "filename": "JobSupport.kt" - }, - "line": 495 - } + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.JobSupport.invokeOnCompletion(boolean, boolean, kotlin.jvm.functions.Function1)[]@JobSupport.kt:495" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.Job$DefaultImpls.invokeOnCompletion$default(kotlinx.coroutines.Job, boolean, boolean, kotlin.jvm.functions.Function1, int, java.lang.Object)", - "filename": "Job.kt" - }, - "line": 353 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.ChildHandle kotlinx.coroutines.JobSupport.attachChild(kotlinx.coroutines.ChildJob)", - "filename": "JobSupport.kt" - }, - "line": 971 - } + "kotlinx.coroutines.ChildHandle kotlinx.coroutines.JobSupport.attachChild(kotlinx.coroutines.ChildJob)[]@JobSupport.kt:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3a", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.JobSupport.initParentJob(kotlinx.coroutines.Job)", - "filename": "JobSupport.kt" - }, - "line": 149 - } + "void kotlinx.coroutines.JobSupport.initParentJob(kotlinx.coroutines.Job)[]@JobSupport.kt:149" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.AbstractCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean, boolean)", - "filename": "AbstractCoroutine.kt" - }, - "line": 48 - } + "void kotlinx.coroutines.AbstractCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean, boolean)[]@AbstractCoroutine.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.StandaloneCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean)", - "filename": "Builders.common.kt" - }, - "line": 188 - } + "void kotlinx.coroutines.StandaloneCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean)[]@Builders.common.kt:188" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "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": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "FlowValueWrapperInternal.kt" - }, - "line": 39 - } + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x181", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", - "filename": "SharedFlow.kt" - }, - "line": 392 - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", - "filename": "SharedFlow.kt" - } - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invokeSuspend(java.lang.Object)", - "filename": "PerformanceWatcherImpl.kt" - } - } + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invokeSuspend(java.lang.Object)[]@PerformanceWatcherImpl.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(com.intellij.diagnostic.PerformanceWatcherImpl$FreezeCheckerTask, kotlin.coroutines.Continuation)", - "filename": "PerformanceWatcherImpl.kt" - } - } + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(com.intellij.diagnostic.PerformanceWatcherImpl$FreezeCheckerTask, kotlin.coroutines.Continuation)[]@PerformanceWatcherImpl.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(java.lang.Object, java.lang.Object)", - "filename": "PerformanceWatcherImpl.kt" - } - } + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(java.lang.Object, java.lang.Object)[]@PerformanceWatcherImpl.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)", - "filename": "Merge.kt" - }, - "line": 213 - } + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)[]@Merge.kt:213" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)[]@Merge.kt:30" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@Undispatched.kt:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@CoroutineStart.kt:90" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@AbstractCoroutine.kt:123" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "FlowValueWrapperInternal.kt" - }, - "line": 39 - } + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x181", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)", - "filename": "SharedFlow.kt" - }, - "line": 392 - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)", - "filename": "SharedFlow.kt" - } - } + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x12495b0", "lines": [ - { - "function": { - "name": "_raw_spin_unlock_irqrestore" - } - } + "_raw_spin_unlock_irqrestore[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15eef6", "lines": [ - { - "function": { - "name": "try_to_wake_up" - } - } + "try_to_wake_up[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15f46f", "lines": [ - { - "function": { - "name": "wake_up_q" - } - } + "wake_up_q[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x225ea6", "lines": [ - { - "function": { - "name": "futex_wake" - } - } + "futex_wake[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x22291d", "lines": [ - { - "function": { - "name": "do_futex" - } - } + "do_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x223159", "lines": [ - { - "function": { - "name": "__x64_sys_futex" - } - } + "__x64_sys_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x55d0", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9b05e", "lines": [ - { - "function": { - "name": "__GI___pthread_cond_signal", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___pthread_cond_signal[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xfb2099", "lines": [ - { - "function": { - "name": "Unsafe_Unpark", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Unsafe_Unpark[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)", - "filename": "Unsafe.java" - } - } + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@Unsafe.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", - "filename": "LockSupport.java" - }, - "line": 181 - } + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@LockSupport.java:181" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1d", "lines": [ - { - "function": { - "name": "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()", - "filename": "CoroutineScheduler.kt" - }, - "line": 488 - } + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@CoroutineScheduler.kt:488" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()", - "filename": "CoroutineScheduler.kt" - }, - "line": 463 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@CoroutineScheduler.kt:463" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@CoroutineScheduler.kt:439" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)", - "filename": "Dispatcher.kt" - }, - "line": 118 - } + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@Dispatcher.kt:118" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x69", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)", - "filename": "DispatchedTask.kt" - }, - "line": 157 - } + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@DispatchedTask.kt:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)", - "filename": "CancellableContinuationImpl.kt" - }, - "line": 470 - } + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@CancellableContinuationImpl.kt:470" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x24", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)", - "filename": "CancellableContinuationImpl.kt" - }, - "line": 586 - } + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@CancellableContinuationImpl.kt:586" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@BufferedChannel.kt:2924" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@BufferedChannel.kt:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x36", "lines": [ - { - "function": { - "name": "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)", - "filename": "BufferedChannel.kt" - }, - "line": 1713 - } + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@BufferedChannel.kt:1713" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)", - "filename": "BufferedChannel.kt" - }, - "line": 643 - } + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@BufferedChannel.kt:643" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@BufferedChannel.kt:459" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@BufferedChannel.kt:3117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "BufferedChannel.kt" - } - } + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@BufferedChannel.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)", - "filename": "ChannelCoroutine.kt" - } - } + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@ChannelCoroutine.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@SendingCollector.kt:15" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)[]@Merge.kt:213" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)[]@Merge.kt:30" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@Undispatched.kt:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@CoroutineStart.kt:90" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@AbstractCoroutine.kt:123" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$emit$1.invokeSuspend(java.lang.Object)[]@Merge.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1", "lines": [ - { - "function": { - "name": "void javax.swing.SwingUtilities.invokeLater(java.lang.Runnable)", - "filename": "SwingUtilities.java" - }, - "line": 1421 - } + "void javax.swing.SwingUtilities.invokeLater(java.lang.Runnable)[]@SwingUtilities.java:1421" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.Timer$1.run()", - "filename": "Timer.java" - }, - "line": 617 - } + "java.lang.Void javax.swing.Timer$1.run()[]@Timer.java:617" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.Timer$1.run()", - "filename": "Timer.java" - }, - "line": 615 - } + "java.lang.Object javax.swing.Timer$1.run()[]@Timer.java:615" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1f", "lines": [ - { - "function": { - "name": "void javax.swing.Timer.post()", - "filename": "Timer.java" - }, - "line": 615 - } + "void javax.swing.Timer.post()[]@Timer.java:615" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x34", "lines": [ - { - "function": { - "name": "void javax.swing.TimerQueue.run()", - "filename": "TimerQueue.java" - }, - "line": 177 - } + "void javax.swing.TimerQueue.run()[]@TimerQueue.java:177" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } + "void java.lang.Thread.run()[]@Thread.java:1583" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xc7", "lines": [ - { - "function": { - "name": "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)", - "filename": "DrawImage.java" - }, - "line": 993 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x38", "lines": [ - { - "function": { - "name": "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)", - "filename": "DrawImage.java" - }, - "line": 590 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)", - "filename": "DrawImage.java" - }, - "line": 88 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "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)", - "filename": "DrawImage.java" - }, - "line": 1064 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)", - "filename": "SunGraphics2D.java" - }, - "line": 3338 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x63", "lines": [ - { - "function": { - "name": "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)", - "filename": "SunGraphics2D.java" - }, - "line": 3381 - } + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@SunGraphics2D.java:3381" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)", - "filename": "SunGraphics2D.java" - }, - "line": 3323 - } + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@SunGraphics2D.java:3323" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf0", "lines": [ - { - "function": { - "name": "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)", - "filename": "StartupUiUtil.kt" - }, - "line": 436 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "StartupUiUtil.kt" - }, - "line": 287 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5a", "lines": [ - { - "function": { - "name": "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)", - "filename": "StartupUiUtil.kt" - }, - "line": 260 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "ScaledIconCache.kt" - }, - "line": 105 - } + "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@ScaledIconCache.kt:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12a", "lines": [ - { - "function": { - "name": "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "CachedImageIcon.kt" - }, - "line": 145 - } + "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@CachedImageIcon.kt:145" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa0", "lines": [ - { - "function": { - "name": "void com.intellij.ui.LayeredIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "LayeredIcon.kt" - }, - "line": 287 - } + "void com.intellij.ui.LayeredIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@LayeredIcon.kt:287" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa5", "lines": [ - { - "function": { - "name": "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "RowIcon.kt" - }, - "line": 110 - } + "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@RowIcon.kt:110" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)", - "filename": "IconUtil.kt" - }, - "line": 251 - } + "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)[]@IconUtil.kt:251" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3c", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)", - "filename": "SimpleColoredComponent.java" - }, - "line": 1089 - } + "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)[]@SimpleColoredComponent.java:1089" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)", - "filename": "SimpleColoredComponent.java" - }, - "line": 801 - } + "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)[]@SimpleColoredComponent.java:801" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)", - "filename": "SimpleColoredComponent.java" - }, - "line": 761 - } + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@SimpleColoredComponent.java:761" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)", - "filename": "SimpleColoredComponent.java" - }, - "line": 745 - } + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@SimpleColoredComponent.java:745" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@CellRendererPane.java:170" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultTreeUI.java:372" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", - "filename": "ComponentUI.java" - }, - "line": 161 - } + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 855 - } + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x41", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", - "filename": "Tree.java" - }, - "line": 381 - } + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@Tree.java:381" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", - "filename": "Tree.java" - }, - "line": 312 - } + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@Tree.java:312" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xcd", "lines": [ - { - "function": { - "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", - "filename": "JViewport.java" - }, - "line": 736 - } + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", - "filename": "JBViewport.java" - }, - "line": 240 - } + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 243 - } + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 231 - } + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2ab", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5267 - } + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5077 - } + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 887 - } + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 843 - } + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 789 - } + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", - "filename": "RepaintManager.java" - }, - "line": 1921 - } + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1cc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 387 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, short, short, short, short, int, int, int, int)", - "filename": "XRBackendNative.java" - } - } + "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, short, short, short, short, int, int, int, int)[]@XRBackendNative.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1f", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, sun.java2d.xr.XRColor, int, int, int, int)", - "filename": "XRBackendNative.java" - }, - "line": 142 - } + "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, sun.java2d.xr.XRColor, int, int, int, int)[]@XRBackendNative.java:142" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe7", "lines": [ - { - "function": { - "name": "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)", - "filename": "MaskTileManager.java" - }, - "line": 198 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc8", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)", - "filename": "MaskTileManager.java" - }, - "line": 104 - } + "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)[]@MaskTileManager.java:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x27", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)", - "filename": "XRRenderer.java" - }, - "line": 275 - } + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@XRRenderer.java:275" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", - "filename": "XRRenderer.java" - }, - "line": 349 - } + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@XRRenderer.java:349" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", - "filename": "ValidatePipe.java" - }, - "line": 160 - } + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@ValidatePipe.java:160" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)", - "filename": "SunGraphics2D.java" - }, - "line": 2532 - } + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@SunGraphics2D.java:2532" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)", - "filename": "RectanglePainter2D.java" - }, - "line": 211 - } + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@RectanglePainter2D.java:211" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)", - "filename": "PaintUtil.java" - }, - "line": 402 - } + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@PaintUtil.java:402" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xde", "lines": [ - { - "function": { - "name": "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)", - "filename": "RectanglePainter2D.java" - }, - "line": 210 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x40", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", - "filename": "RectanglePainter.java" - }, - "line": 28 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", - "filename": "RectanglePainter.java" - }, - "line": 21 - } + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@RectanglePainter.java:21" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", - "filename": "RectanglePainter.java" - }, - "line": 18 - } + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@RectanglePainter.java:18" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x42", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)", - "filename": "RectanglePainter.java" - }, - "line": 37 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x96", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)", - "filename": "ScrollBarPainter.java" - }, - "line": 253 - } + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@ScrollBarPainter.java:253" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", - "filename": "ScrollBarPainter.java" - }, - "line": 216 - } + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@ScrollBarPainter.java:216" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe9", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 150 - } + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@DefaultScrollBarUI.kt:150" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x46", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb$intellij_platform_ide(java.awt.Graphics2D, javax.swing.JComponent, com.intellij.ui.components.DefaultScrollbarUiInstalledState)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 119 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2bd", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 318 - } + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultScrollBarUI.kt:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", - "filename": "ComponentUI.java" - }, - "line": 161 - } + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 855 - } + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 243 - } + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 231 - } + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2ab", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5267 - } + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5077 - } + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 887 - } + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 843 - } + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 789 - } + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", - "filename": "RepaintManager.java" - }, - "line": 1921 - } + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1cc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 387 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x7a2d3a", "lines": [ - { - "function": { - "name": "RegisterMap::RegisterMap(JavaThread*, RegisterMap::UpdateMap, RegisterMap::ProcessFrames, RegisterMap::WalkContinuation)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "RegisterMap::RegisterMap(JavaThread*, RegisterMap::UpdateMap, RegisterMap::ProcessFrames, RegisterMap::WalkContinuation)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x680364", "lines": [ - { - "function": { - "name": "vframeStream::vframeStream(JavaThread*, bool, bool, bool)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "vframeStream::vframeStream(JavaThread*, bool, bool, bool)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9f701d", "lines": [ - { - "function": { - "name": "JVM_GetStackAccessControlContext", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JVM_GetStackAccessControlContext[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()", - "filename": "AccessController.java" - } - } + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@AccessController.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "java.security.AccessControlContext java.security.AccessController.getContext()", - "filename": "AccessController.java" - }, - "line": 1006 - } + "java.security.AccessControlContext java.security.AccessController.getContext()[]@AccessController.java:1006" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 744 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:744" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "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" - } + "boolean java.lang.String.equals(java.lang.Object)[]@String.java:1858" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x12", "lines": [ - { - "function": { - "name": "sun.java2d.loops.FontInfo sun.java2d.SunGraphics2D.getFontInfo()", - "filename": "SunGraphics2D.java" - }, - "line": 833 - } + "sun.java2d.loops.FontInfo sun.java2d.SunGraphics2D.getFontInfo()[]@SunGraphics2D.java:833" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)", - "filename": "GlyphListPipe.java" - }, - "line": 85 - } + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@GlyphListPipe.java:85" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)", - "filename": "SunGraphics2D.java" - }, - "line": 3042 - } + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@SunGraphics2D.java:3042" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x30", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)", - "filename": "SimpleTextFragment.java" - }, - "line": 46 - } + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@SimpleTextFragment.java:46" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)", - "filename": "EditorPainter.java" - }, - "line": 659 - } + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@EditorPainter.java:659" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.util.ArrayList.forEach(java.util.function.Consumer)", - "filename": "ArrayList.java" - }, - "line": 1596 - } + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@ArrayList.java:1596" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()", - "filename": "EditorPainter.java" - }, - "line": 659 - } + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@EditorPainter.java:659" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x85", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()", - "filename": "EditorPainter.java" - }, - "line": 199 - } + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@EditorPainter.java:199" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)", - "filename": "EditorPainter.java" - }, - "line": 86 - } + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@EditorPainter.java:86" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)", - "filename": "EditorView.java" - }, - "line": 283 - } + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@EditorView.java:283" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x30", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$49(java.awt.Graphics2D)", - "filename": "EditorImpl.java" - }, - "line": 2107 - } + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$49(java.awt.Graphics2D)[]@EditorImpl.java:2107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 258 - } + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 272 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:272" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 258 - } + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 853 - } + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@ApplicationImpl.java:853" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)", - "filename": "EditorImpl.java" - }, - "line": 2097 - } + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@EditorImpl.java:2097" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x41", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)", - "filename": "EditorComponentImpl.java" - }, - "line": 275 - } + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@EditorComponentImpl.java:275" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)", - "filename": "EditorComponentImpl.java" - }, - "line": 154 - } + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@EditorComponentImpl.java:154" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xcd", "lines": [ - { - "function": { - "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", - "filename": "JViewport.java" - }, - "line": 736 - } + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", - "filename": "JBViewport.java" - }, - "line": 240 - } + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 243 - } + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 231 - } + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2ab", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5267 - } + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5077 - } + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 887 - } + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 843 - } + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 789 - } + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", - "filename": "RepaintManager.java" - }, - "line": 1921 - } + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1cc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 387 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x4d8baf", "lines": [ - { - "function": { - "name": "syscall.Syscall6", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "syscall.Syscall6[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x4d5b2f", "lines": [ - { - "function": { - "name": "syscall.openat", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "syscall.openat[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x503f0a", "lines": [ - { - "function": { - "name": "os.open", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "os.open[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x504af1", "lines": [ - { - "function": { - "name": "os.openFileNolog.func1", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "os.openFileNolog.func1[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x50490d", "lines": [ - { - "function": { - "name": "os.openFileNolog", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "os.openFileNolog[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x502e9d", "lines": [ - { - "function": { - "name": "os.OpenFile", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "os.OpenFile[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1b68e78", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).GetMappings", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1c00e10", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SynchronizeProcess", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1c07f24", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).processPIDEvents", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1c07d27", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartPIDEventProcessor.gowrap1", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x4801c0", "lines": [ - { - "function": { - "name": "runtime.goexit", - "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" - } + "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 - ] + "values": "50000000" }, { "locations": [ { "address": "0x474ecd", "lines": [ - { - "function": { - "name": "runtime.mapaccess2_fast64", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "runtime.mapaccess2_fast64[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" ], - "mapping": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1b518cb", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1b4fd87", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1b6e464", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1b6e2be", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x1b6f81b", "lines": [ - { - "function": { - "name": "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1", - "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" - } - } + "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": { - "start": "0x402000", - "limit": "0x1c7e000", - "offset": "0x0", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" - } + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" }, { "address": "0x4801c0", "lines": [ - { - "function": { - "name": "runtime.goexit", - "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" - } + "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 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeRead()", - "filename": "AbstractChannelHandlerContext.java" - }, - "line": 827 - } + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeRead()[]@AbstractChannelHandlerContext.java:827" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.read()", - "filename": "AbstractChannelHandlerContext.java" - }, - "line": 814 - } + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.read()[]@AbstractChannelHandlerContext.java:814" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.read()", - "filename": "DefaultChannelPipeline.java" - }, - "line": 1004 - } + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.read()[]@DefaultChannelPipeline.java:1004" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.read()", - "filename": "AbstractChannel.java" - }, - "line": 290 - } + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.read()[]@AbstractChannel.java:290" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.readIfIsAutoRead()", - "filename": "DefaultChannelPipeline.java" - }, - "line": 1422 - } + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.readIfIsAutoRead()[]@DefaultChannelPipeline.java:1422" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)", - "filename": "DefaultChannelPipeline.java" - }, - "line": 1417 - } + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@DefaultChannelPipeline.java:1417" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()", - "filename": "AbstractChannelHandlerContext.java" - }, - "line": 482 - } + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()[]@AbstractChannelHandlerContext.java:482" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)", - "filename": "AbstractChannelHandlerContext.java" - }, - "line": 463 - } + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)[]@AbstractChannelHandlerContext.java:463" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelReadComplete()", - "filename": "DefaultChannelPipeline.java" - }, - "line": 925 - } + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelReadComplete()[]@DefaultChannelPipeline.java:925" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10e", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()", - "filename": "AbstractEpollStreamChannel.java" - }, - "line": 820 - } + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@AbstractEpollStreamChannel.java:820" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x87", "lines": [ - { - "function": { - "name": "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)", - "filename": "EpollEventLoop.java" - }, - "line": 509 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x174", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()", - "filename": "EpollEventLoop.java" - }, - "line": 407 - } + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@EpollEventLoop.java:407" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", - "filename": "SingleThreadEventExecutor.java" - }, - "line": 997 - } + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@SingleThreadEventExecutor.java:997" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()", - "filename": "ThreadExecutorMap.java" - }, - "line": 74 - } + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@ThreadExecutorMap.java:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()", - "filename": "FastThreadLocalRunnable.java" - }, - "line": 30 - } + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@FastThreadLocalRunnable.java:30" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } + "void java.lang.Thread.run()[]@Thread.java:1583" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(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" - } - } + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "thread_entry(JavaThread*, JavaThread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "JavaThread::thread_main_inner()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "Thread::call_run()", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "thread_native_entry(Thread*)", - "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" - } - } + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x7e27b7c00000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "start_thread", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "__GI___clone3", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1249eb4", "lines": [ - { - "function": { - "name": "_raw_spin_unlock_irq" - } - } + "_raw_spin_unlock_irq[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x241291", "lines": [ - { - "function": { - "name": "cgroup_rstat_flush" - } - } + "cgroup_rstat_flush[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4b8575", "lines": [ - { - "function": { - "name": "flush_memcg_stats_dwork" - } - } + "flush_memcg_stats_dwork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9ef74", "lines": [ - { - "function": { - "name": "nvkm_timer_read" - } - } + "nvkm_timer_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xac40b", "lines": [ - { - "function": { - "name": "nvkm_udevice_mthd" - } - } + "nvkm_udevice_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xae89", "lines": [ - { - "function": { - "name": "nvkm_object_mthd" - } - } + "nvkm_object_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x950c", "lines": [ - { - "function": { - "name": "nvkm_ioctl_mthd" - } - } + "nvkm_ioctl_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9b94", "lines": [ - { - "function": { - "name": "nvkm_ioctl" - } - } + "nvkm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11dcbd", "lines": [ - { - "function": { - "name": "nvkm_client_ioctl" - } - } + "nvkm_client_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x468", "lines": [ - { - "function": { - "name": "nvif_object_mthd" - } - } + "nvif_object_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a5", "lines": [ - { - "function": { - "name": "nvif_device_time" - } - } + "nvif_device_time[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x47d4", "lines": [ - { - "function": { - "name": "nvif_timer_wait_test" - } - } + "nvif_timer_wait_test[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x160554", "lines": [ - { - "function": { - "name": "base507c_ntfy_wait_begun" - } - } + "base507c_ntfy_wait_begun[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15df99", "lines": [ - { - "function": { - "name": "nv50_wndw_wait_armed" - } - } + "nv50_wndw_wait_armed[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14f7b9", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_tail" - } - } + "nv50_disp_atomic_commit_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14feb1", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_work" - } - } + "nv50_disp_atomic_commit_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 100000000 - ] + "values": "100000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x160567", "lines": [ - { - "function": { - "name": "base507c_ntfy_wait_begun" - } - } + "base507c_ntfy_wait_begun[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15df99", "lines": [ - { - "function": { - "name": "nv50_wndw_wait_armed" - } - } + "nv50_wndw_wait_armed[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14f7b9", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_tail" - } - } + "nv50_disp_atomic_commit_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14feb1", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_work" - } - } + "nv50_disp_atomic_commit_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 100000000 - ] + "values": "100000000" }, { "locations": [ { "address": "0x461a35", "lines": [ - { - "function": { - "name": "build_detached_freelist" - } - } + "build_detached_freelist[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x461cad", "lines": [ - { - "function": { - "name": "kmem_cache_free_bulk.part.0" - } - } + "kmem_cache_free_bulk.part.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x461fd2", "lines": [ - { - "function": { - "name": "kmem_cache_free_bulk" - } - } + "kmem_cache_free_bulk[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1dba61", "lines": [ - { - "function": { - "name": "kvfree_rcu_bulk" - } - } + "kvfree_rcu_bulk[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1dfddf", "lines": [ - { - "function": { - "name": "kfree_rcu_monitor" - } - } + "kfree_rcu_monitor[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x12406e0", "lines": [ - { - "function": { - "name": "__schedule" - } - } + "__schedule[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124809b", "lines": [ - { - "function": { - "name": "schedule_hrtimeout_range_clock" - } - } + "schedule_hrtimeout_range_clock[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1248152", "lines": [ - { - "function": { - "name": "schedule_hrtimeout_range" - } - } + "schedule_hrtimeout_range[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1247d14", "lines": [ - { - "function": { - "name": "usleep_range_state" - } - } + "usleep_range_state[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16054b", "lines": [ - { - "function": { - "name": "base507c_ntfy_wait_begun" - } - } + "base507c_ntfy_wait_begun[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15df99", "lines": [ - { - "function": { - "name": "nv50_wndw_wait_armed" - } - } + "nv50_wndw_wait_armed[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14f7b9", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_tail" - } - } + "nv50_disp_atomic_commit_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14feb1", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_work" - } - } + "nv50_disp_atomic_commit_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xa45571", "lines": [ - { - "function": { - "name": "acpi_ns_search_one_scope" - } - } + "acpi_ns_search_one_scope[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa45a4c", "lines": [ - { - "function": { - "name": "acpi_ns_search_and_enter" - } - } + "acpi_ns_search_and_enter[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa3dcba", "lines": [ - { - "function": { - "name": "acpi_ns_lookup" - } - } + "acpi_ns_lookup[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa4920e", "lines": [ - { - "function": { - "name": "acpi_ps_get_next_namepath" - } - } + "acpi_ps_get_next_namepath[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa49e21", "lines": [ - { - "function": { - "name": "acpi_ps_get_arguments.constprop.0" - } - } + "acpi_ps_get_arguments.constprop.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa4a430", "lines": [ - { - "function": { - "name": "acpi_ps_parse_loop" - } - } + "acpi_ps_parse_loop[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa4c0f5", "lines": [ - { - "function": { - "name": "acpi_ps_parse_aml" - } - } + "acpi_ps_parse_aml[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa4d341", "lines": [ - { - "function": { - "name": "acpi_ps_execute_method" - } - } + "acpi_ps_execute_method[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa40084", "lines": [ - { - "function": { - "name": "acpi_ns_evaluate" - } - } + "acpi_ns_evaluate[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa47b61", "lines": [ - { - "function": { - "name": "acpi_evaluate_object" - } - } + "acpi_evaluate_object[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9ed06d", "lines": [ - { - "function": { - "name": "acpi_evaluate_integer" - } - } + "acpi_evaluate_integer[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa73cdd", "lines": [ - { - "function": { - "name": "acpi_thermal_get_temperature" - } - } + "acpi_thermal_get_temperature[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa73ed3", "lines": [ - { - "function": { - "name": "thermal_get_temp" - } - } + "thermal_get_temp[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe0d8a3", "lines": [ - { - "function": { - "name": "__thermal_zone_get_temp" - } - } + "__thermal_zone_get_temp[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe08587", "lines": [ - { - "function": { - "name": "__thermal_zone_device_update.part.0" - } - } + "__thermal_zone_device_update.part.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe098d0", "lines": [ - { - "function": { - "name": "thermal_zone_device_check" - } - } + "thermal_zone_device_check[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1249d1b", "lines": [ - { - "function": { - "name": "_raw_spin_lock" - } - } + "_raw_spin_lock[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca5fd8", "lines": [ - { - "function": { - "name": "drm_gem_object_lookup" - } - } + "drm_gem_object_lookup[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1234c9", "lines": [ - { - "function": { - "name": "validate_init" - } - } + "validate_init[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124101", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x11e6f2", "lines": [ - { - "function": { - "name": "set_placement_list" - } - } + "set_placement_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1202b1", "lines": [ - { - "function": { - "name": "nouveau_bo_placement_set" - } - } + "nouveau_bo_placement_set[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228ac", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xc1f33b", "lines": [ - { - "function": { - "name": "dma_resv_iter_first" - } - } + "dma_resv_iter_first[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x167ab8", "lines": [ - { - "function": { - "name": "nouveau_fence_sync" - } - } + "nouveau_fence_sync[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228de", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x1d1d5", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14c9cf", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x275a2", "lines": [ - { - "function": { - "name": "glamor_pixmap_exchange_fbos", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x2746c", "lines": [ - { - "function": { - "name": "glamor_pixmap_exchange_fbos", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x140e6f", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xc1fed8", "lines": [ - { - "function": { - "name": "dma_resv_add_fence" - } - } + "dma_resv_add_fence[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1214d5", "lines": [ - { - "function": { - "name": "nouveau_bo_fence" - } - } + "nouveau_bo_fence[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x123249", "lines": [ - { - "function": { - "name": "validate_fini_no_ticket" - } - } + "validate_fini_no_ticket[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124347", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1228bb", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x167b14", "lines": [ - { - "function": { - "name": "nouveau_fence_sync" - } - } + "nouveau_fence_sync[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228de", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x682f0", "lines": [ - { - "function": { - "name": "_CallCallbacks", - "filename": "/usr/lib/xorg/Xorg" - } - } + "_CallCallbacks[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x114b27", "lines": [ - { - "function": { - "name": "XaceHookDispatch", - "filename": "/usr/lib/xorg/Xorg" - } - } + "XaceHookDispatch[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62b47", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x4e4db0", "lines": [ - { - "function": { - "name": "vfs_read" - } - } + "vfs_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5cf8", "lines": [ - { - "function": { - "name": "ksys_read" - } - } + "ksys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e5d58", "lines": [ - { - "function": { - "name": "__x64_sys_read" - } - } + "__x64_sys_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x70af", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11ba99", "lines": [ - { - "function": { - "name": "__GI___libc_read", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___libc_read[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x1dfbb8", "lines": [ - { - "function": { - "name": "AddClientOnOpenFD", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddClientOnOpenFD[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x1e2889", "lines": [ - { - "function": { - "name": "OsCleanup", - "filename": "/usr/lib/xorg/Xorg" - } - } + "OsCleanup[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x1db1f4", "lines": [ - { - "function": { - "name": "WaitForSomething", - "filename": "/usr/lib/xorg/Xorg" - } - } + "WaitForSomething[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x627e9", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1eb1cd", "lines": [ - { - "function": { - "name": "dma_sync_single_for_device" - } - } + "dma_sync_single_for_device[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1208e8", "lines": [ - { - "function": { - "name": "nouveau_bo_sync_for_device" - } - } + "nouveau_bo_sync_for_device[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120f7f", "lines": [ - { - "function": { - "name": "nouveau_bo_validate" - } - } + "nouveau_bo_validate[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228bb", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1249eb4", "lines": [ - { - "function": { - "name": "_raw_spin_unlock_irq" - } - } + "_raw_spin_unlock_irq[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1675f3", "lines": [ - { - "function": { - "name": "nouveau_fence_emit" - } - } + "nouveau_fence_emit[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x167d6c", "lines": [ - { - "function": { - "name": "nouveau_fence_new" - } - } + "nouveau_fence_new[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1242f2", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x1d1d5", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14c9cf", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x275a2", "lines": [ - { - "function": { - "name": "glamor_pixmap_exchange_fbos", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x2746c", "lines": [ - { - "function": { - "name": "glamor_pixmap_exchange_fbos", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x140e6f", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x123db4", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x166a5a", "lines": [ - { - "function": { - "name": "nouveau_dma_wait" - } - } + "nouveau_dma_wait[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124942", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa59b08", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x16f176", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0xa65c", "lines": [ - { - "function": { - "name": "glamor_destroy_pixmap", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_destroy_pixmap[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0xd23a", "lines": [ - { - "function": { - "name": "modesetting_drv.so 0xd23a" - } - } + "modesetting_drv.so 0xd23a[]@:0" ], - "mapping": { - "start": "0x6000", - "limit": "0x18000", - "offset": "0x7846dffc2000", - "filename": "modesetting_drv.so", - "build_id": "7db476841fbca1d8513fea7fef2b72c408a385b7" - } + "mapping": "0x6000-0x18000@0x7846dffc2000 modesetting_drv.so(7db476841fbca1d8513fea7fef2b72c408a385b7)" }, { "address": "0x678cc", "lines": [ - { - "function": { - "name": "BlockHandler", - "filename": "/usr/lib/xorg/Xorg" - } - } + "BlockHandler[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x1db1bf", "lines": [ - { - "function": { - "name": "WaitForSomething", - "filename": "/usr/lib/xorg/Xorg" - } - } + "WaitForSomething[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x627e9", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x26f09", "lines": [ - { - "function": { - "name": "glamor_pixmap_exchange_fbos", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x27145", "lines": [ - { - "function": { - "name": "glamor_pixmap_exchange_fbos", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x140e6f", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x166a5a", "lines": [ - { - "function": { - "name": "nouveau_dma_wait" - } - } + "nouveau_dma_wait[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124942", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xd5bc8", "lines": [ - { - "function": { - "name": "__virt_addr_valid" - } - } + "__virt_addr_valid[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4d840b", "lines": [ - { - "function": { - "name": "check_heap_object" - } - } + "check_heap_object[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4d8631", "lines": [ - { - "function": { - "name": "__check_object_size.part.0" - } - } + "__check_object_size.part.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4d8742", "lines": [ - { - "function": { - "name": "__check_object_size" - } - } + "__check_object_size[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f1e43", "lines": [ - { - "function": { - "name": "vmemdup_user" - } - } + "vmemdup_user[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x123f2c", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x100ef", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14bb06", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x13f976", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1236dd", "lines": [ - { - "function": { - "name": "validate_init" - } - } + "validate_init[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124101", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x45e17d", "lines": [ - { - "function": { - "name": "___slab_alloc" - } - } + "___slab_alloc[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4608a9", "lines": [ - { - "function": { - "name": "kmalloc_trace" - } - } + "kmalloc_trace[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x167d58", "lines": [ - { - "function": { - "name": "nouveau_fence_new" - } - } + "nouveau_fence_new[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1242f2", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "__GI___ioctl", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "drmIoctl", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "drmCommandWriteRead", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" - } - } + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x7846e0c26000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_data", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "nouveau_pushbuf_kick", - "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" - } - } + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x7846dfd62000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_drm_screen_create", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "__driDriverGetExtensions_d3d12", - "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" - } - } + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x7846dda00000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x100ef", "lines": [ - { - "function": { - "name": "glamor_create_gc", - "filename": "/usr/lib/xorg/modules/libglamoregl.so" - } - } + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7846dff8b000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14bb06", "lines": [ - { - "function": { - "name": "DamageRegionAppend", - "filename": "/usr/lib/xorg/Xorg" - } - } + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x13f976", "lines": [ - { - "function": { - "name": "AddTraps", - "filename": "/usr/lib/xorg/Xorg" - } - } + "AddTraps[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "SendErrorToClient", - "filename": "/usr/lib/xorg/Xorg" - } - } + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "InitFonts", - "filename": "/usr/lib/xorg/Xorg" - } - } + "InitFonts[]@/usr/lib/xorg/Xorg:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "__libc_start_call_main", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "__libc_start_main_alias_2", - "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - } + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "_start", - "filename": "/usr/lib/xorg/Xorg" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x5f6beff44000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x74efc91", "lines": [ - { - "function": { - "name": "libxul.so 0x74efc91" - } - } + "libxul.so 0x74efc91[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74fe201", "lines": [ - { - "function": { - "name": "libxul.so 0x74fe201" - } - } + "libxul.so 0x74fe201[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x3160740", "lines": [ - { - "function": { - "name": "libxul.so 0x3160740" - } - } + "libxul.so 0x3160740[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74fd034", "lines": [ - { - "function": { - "name": "libxul.so 0x74fd034" - } - } + "libxul.so 0x74fd034[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74c80f0", "lines": [ - { - "function": { - "name": "libxul.so 0x74c80f0" - } - } + "libxul.so 0x74c80f0[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74bf9f6", "lines": [ - { - "function": { - "name": "libxul.so 0x74bf9f6" - } - } + "libxul.so 0x74bf9f6[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74bd239", "lines": [ - { - "function": { - "name": "libxul.so 0x74bd239" - } - } + "libxul.so 0x74bd239[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74bc0a6", "lines": [ - { - "function": { - "name": "libxul.so 0x74bc0a6" - } - } + "libxul.so 0x74bc0a6[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x4b111ef", "lines": [ - { - "function": { - "name": "libxul.so 0x4b111ef" - } - } + "libxul.so 0x4b111ef[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x491d7cf", "lines": [ - { - "function": { - "name": "libxul.so 0x491d7cf" - } - } + "libxul.so 0x491d7cf[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x39892a2", "lines": [ - { - "function": { - "name": "libxul.so 0x39892a2" - } - } + "libxul.so 0x39892a2[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x3989185", "lines": [ - { - "function": { - "name": "libxul.so 0x3989185" - } - } + "libxul.so 0x3989185[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2b01713", "lines": [ - { - "function": { - "name": "libxul.so 0x2b01713" - } - } + "libxul.so 0x2b01713[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a5e5a4", "lines": [ - { - "function": { - "name": "libxul.so 0x2a5e5a4" - } - } + "libxul.so 0x2a5e5a4[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2afb213", "lines": [ - { - "function": { - "name": "libxul.so 0x2afb213" - } - } + "libxul.so 0x2afb213[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2afaf19", "lines": [ - { - "function": { - "name": "libxul.so 0x2afaf19" - } - } + "libxul.so 0x2afaf19[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2aff749", "lines": [ - { - "function": { - "name": "libxul.so 0x2aff749" - } - } + "libxul.so 0x2aff749[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2aff6b9", "lines": [ - { - "function": { - "name": "libxul.so 0x2aff6b9" - } - } + "libxul.so 0x2aff6b9[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x29ce05f", "lines": [ - { - "function": { - "name": "libxul.so 0x29ce05f" - } - } + "libxul.so 0x29ce05f[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x53ff6", "lines": [ - { - "function": { - "name": "firefox-bin 0x53ff6" - } - } + "firefox-bin 0x53ff6[]@:0" ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x626f0e70a000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xa43d6", "lines": [ - { - "function": { - "name": "firefox-bin 0xa43d6" - } - } - ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x626f0e70a000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x74f0746", "lines": [ - { - "function": { - "name": "libxul.so 0x74f0746" - } - } + "libxul.so 0x74f0746[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x74fe201", "lines": [ - { - "function": { - "name": "libxul.so 0x74fe201" - } - } + "libxul.so 0x74fe201[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x3160740", "lines": [ - { - "function": { - "name": "libxul.so 0x3160740" - } - } + "libxul.so 0x3160740[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x316019e", "lines": [ - { - "function": { - "name": "libxul.so 0x316019e" - } - } + "libxul.so 0x316019e[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x315f14e", "lines": [ - { - "function": { - "name": "libxul.so 0x315f14e" - } - } + "libxul.so 0x315f14e[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x197a1", "lines": [ - { - "function": { - "name": "libnspr4.so 0x197a1" - } - } + "libnspr4.so 0x197a1[]@:0" ], - "mapping": { - "start": "0x12000", - "limit": "0x35000", - "offset": "0x72bed80b2000", - "filename": "libnspr4.so", - "build_id": "caa869f624148b1ec093de72d7992781a5411334" - } + "mapping": "0x12000-0x35000@0x72bed80b2000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" }, { "address": "0x5dd1f", "lines": [ - { - "function": { - "name": "firefox-bin 0x5dd1f" - } - } + "firefox-bin 0x5dd1f[]@:0" ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x626f0e70a000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129a33", "lines": [ - { - "function": { - "name": "libc.so.6 0x129a33" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129a33[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x11b2b3c", "lines": [ - { - "function": { - "name": "__get_user_8" - } - } + "__get_user_8[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3b53d8", "lines": [ - { - "function": { - "name": "rseq_ip_fixup" - } - } + "rseq_ip_fixup[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3b559a", "lines": [ - { - "function": { - "name": "__rseq_handle_notify_resume" - } - } + "__rseq_handle_notify_resume[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1230cc8", "lines": [ - { - "function": { - "name": "syscall_exit_to_user_mode" - } - } + "syscall_exit_to_user_mode[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228feb", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x98d60", "lines": [ - { - "function": { - "name": "libc.so.6 0x98d60" - } - } + "libc.so.6 0x98d60[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x9bc7d", "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } + "libc.so.6 0x9bc7d[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x93298", "lines": [ - { - "function": { - "name": "firefox-bin 0x93298" - } - } + "firefox-bin 0x93298[]@:0" ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x626f0e70a000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" }, { "address": "0x2b07e36", "lines": [ - { - "function": { - "name": "libxul.so 0x2b07e36" - } - } + "libxul.so 0x2b07e36[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a5ecf8", "lines": [ - { - "function": { - "name": "libxul.so 0x2a5ecf8" - } - } + "libxul.so 0x2a5ecf8[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a5d620", "lines": [ - { - "function": { - "name": "libxul.so 0x2a5d620" - } - } + "libxul.so 0x2a5d620[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a83c8d", "lines": [ - { - "function": { - "name": "libxul.so 0x2a83c8d" - } - } + "libxul.so 0x2a83c8d[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x72becba00000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x197a1", "lines": [ - { - "function": { - "name": "libnspr4.so 0x197a1" - } - } + "libnspr4.so 0x197a1[]@:0" ], - "mapping": { - "start": "0x12000", - "limit": "0x35000", - "offset": "0x72bed80b2000", - "filename": "libnspr4.so", - "build_id": "caa869f624148b1ec093de72d7992781a5411334" - } + "mapping": "0x12000-0x35000@0x72bed80b2000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" }, { "address": "0x5dd1f", "lines": [ - { - "function": { - "name": "firefox-bin 0x5dd1f" - } - } + "firefox-bin 0x5dd1f[]@:0" ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x626f0e70a000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x7e27b9600000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" } ], "period": "1000000000" diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json index 732978cdd9..b185432e51 100644 --- a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json @@ -11,45388 +11,19068 @@ { "address": "0x4e", "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 2522 - } + "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)[]@FileEditorManagerImpl.kt:2522" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.access$getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 1 - } + "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.access$getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)[]@FileEditorManagerImpl.kt:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd7", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl.dumbModeFinished(com.intellij.openapi.project.Project, com.intellij.openapi.fileEditor.ex.FileEditorProviderManager, kotlin.coroutines.Continuation)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 447 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "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)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 118 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$dumbModeFinished$1.invokeSuspend(java.lang.Object)", - "filename": "FileEditorManagerImpl.kt" - } - } + "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$dumbModeFinished$1.invokeSuspend(java.lang.Object)[]@FileEditorManagerImpl.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xcc3a29", "lines": [ - { - "function": { - "name": "libjvm.so 0xcc3a29" - } - } + "libjvm.so 0xcc3a29[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x685b45", "lines": [ - { - "function": { - "name": "libjvm.so 0x685b45" - } - } + "libjvm.so 0x685b45[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xdb21d0", "lines": [ - { - "function": { - "name": "libjvm.so 0xdb21d0" - } - } + "libjvm.so 0xdb21d0[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xdb24bc", "lines": [ - { - "function": { - "name": "libjvm.so 0xdb24bc" - } - } + "libjvm.so 0xdb24bc[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x6a88bb72f03b51a0", "lines": [ - { - "function": { - "name": "ExceptionBlob" - } - } + "ExceptionBlob[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13d", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 102 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:102" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x6f6353f7de2420d8", "lines": [ - { - "function": { - "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" - } - } + "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - } - } + "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd1", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1b", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", - "filename": "LockSupport.java" - }, - "line": 410 - } + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x56", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 785 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:785" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x98d61", "lines": [ - { - "function": { - "name": "libc.so.6 0x98d61" - } - } + "libc.so.6 0x98d61[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x9bc7d", "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } + "libc.so.6 0x9bc7d[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xd141d3", "lines": [ - { - "function": { - "name": "libjvm.so 0xd141d3" - } - } + "libjvm.so 0xd141d3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xfb3d80", "lines": [ - { - "function": { - "name": "libjvm.so 0xfb3d80" - } - } + "libjvm.so 0xfb3d80[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "void jdk.internal.misc.Unsafe.park(boolean, long)", - "filename": "Unsafe.java" - } - } + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@Unsafe.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", - "filename": "LockSupport.java" - }, - "line": 410 - } + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x56", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 785 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:785" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1228fa4", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x98d60", "lines": [ - { - "function": { - "name": "libc.so.6 0x98d60" - } - } + "libc.so.6 0x98d60[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x9bc7d", "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } + "libc.so.6 0x9bc7d[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xd141d3", "lines": [ - { - "function": { - "name": "libjvm.so 0xd141d3" - } - } + "libjvm.so 0xd141d3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xfb3d80", "lines": [ - { - "function": { - "name": "libjvm.so 0xfb3d80" - } - } + "libjvm.so 0xfb3d80[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "void jdk.internal.misc.Unsafe.park(boolean, long)", - "filename": "Unsafe.java" - } - } + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@Unsafe.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", - "filename": "LockSupport.java" - }, - "line": 410 - } + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x56", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 785 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:785" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x3", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)", - "filename": "ThreadContext.kt" - }, - "line": 31 - } + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)[]@ThreadContext.kt:31" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)", - "filename": "ThreadContext.kt" - }, - "line": 55 - } + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)[]@ThreadContext.kt:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(kotlin.coroutines.CoroutineContext, java.lang.Object)", - "filename": "ThreadContext.kt" - }, - "line": 61 - } + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(kotlin.coroutines.CoroutineContext, java.lang.Object)[]@ThreadContext.kt:61" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x76", "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": 270 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:270" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x4b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.json.internal.StreamingJsonDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "StreamingJsonDecoder.kt" - }, - "line": 171 - } + "java.lang.Object kotlinx.serialization.json.internal.StreamingJsonDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@StreamingJsonDecoder.kt:171" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd1", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", - "filename": "UTF8StreamJsonParser.java" - }, - "line": 2496 - } + "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()[]@UTF8StreamJsonParser.java:2496" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getValueAsString()", - "filename": "UTF8StreamJsonParser.java" - }, - "line": 337 - } + "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getValueAsString()[]@UTF8StreamJsonParser.java:337" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.StdDeserializer._deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "StdDeserializer.java" - }, - "line": 262 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x45", "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "BeanDeserializerBase.java" - }, - "line": 1588 - } + "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@BeanDeserializerBase.java:1588" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x47", "lines": [ - { - "function": { - "name": "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)", - "filename": "BeanDeserializer.java" - }, - "line": 197 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3a", "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "BeanDeserializer.java" - }, - "line": 187 - } + "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@BeanDeserializer.java:187" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x58", "lines": [ - { - "function": { - "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext, java.util.Collection)", - "filename": "CollectionDeserializer.java" - }, - "line": 361 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2b", "lines": [ - { - "function": { - "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "CollectionDeserializer.java" - }, - "line": 246 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "CollectionDeserializer.java" - }, - "line": 30 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "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)", - "filename": "DefaultDeserializationContext.java" - }, - "line": 342 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x57", "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)", - "filename": "ObjectMapper.java" - }, - "line": 4905 - } + "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)[]@ObjectMapper.java:4905" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18", "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper.readValue(java.io.InputStream, com.fasterxml.jackson.core.type.TypeReference)", - "filename": "ObjectMapper.java" - }, - "line": 3893 - } + "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper.readValue(java.io.InputStream, com.fasterxml.jackson.core.type.TypeReference)[]@ObjectMapper.java:3893" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.parseXmlIds(java.io.InputStream)", - "filename": "MarketplaceRequests.kt" - }, - "line": 697 - } + "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.parseXmlIds(java.io.InputStream)[]@MarketplaceRequests.kt:697" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3b", "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.loadCachedJBPlugins()", - "filename": "MarketplaceRequests.kt" - }, - "line": 624 - } + "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.loadCachedJBPlugins()[]@MarketplaceRequests.kt:624" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 308 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8d", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 294 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "boolean java.lang.String.equals(java.lang.Object)", - "filename": "String.java" - }, - "line": 1858 - } + "boolean java.lang.String.equals(java.lang.Object)[]@String.java:1858" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x80", "lines": [ - { - "function": { - "name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", - "filename": "HashMap.java" - }, - "line": 585 - } + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@HashMap.java:585" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object java.util.HashMap.get(java.lang.Object)", - "filename": "HashMap.java" - }, - "line": 564 - } + "java.lang.Object java.util.HashMap.get(java.lang.Object)[]@HashMap.java:564" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)", - "filename": "ExtensionsAreaImpl.kt" - }, - "line": 278 - } + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)[]@ExtensionsAreaImpl.kt:278" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)", - "filename": "ExtensionsAreaImpl.kt" - }, - "line": 272 - } + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)[]@ExtensionsAreaImpl.kt:272" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x37", "lines": [ - { - "function": { - "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl$intellij_platform_extensions(com.intellij.openapi.extensions.AreaInstance)", - "filename": "BaseExtensionPointName.kt" - }, - "line": 18 - } + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl$intellij_platform_extensions(com.intellij.openapi.extensions.AreaInstance)[]@BaseExtensionPointName.kt:18" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Iterable com.intellij.openapi.extensions.ExtensionPointName.getIterable()", - "filename": "ExtensionPointName.kt" - }, - "line": 134 - } + "java.lang.Iterable com.intellij.openapi.extensions.ExtensionPointName.getIterable()[]@ExtensionPointName.kt:134" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider.lambda$getFilteredScopes$0(com.intellij.psi.search.scope.packageSet.NamedScope)", - "filename": "CustomScopesProvider.java" - }, - "line": 18 - } + "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider.lambda$getFilteredScopes$0(com.intellij.psi.search.scope.packageSet.NamedScope)[]@CustomScopesProvider.java:18" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider$$Lambda+\u003chidden\u003e.value(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x44", "lines": [ - { - "function": { - "name": "java.util.List com.intellij.util.containers.ContainerUtil.findAll(java.util.Collection, com.intellij.openapi.util.Condition)", - "filename": "ContainerUtil.java" - }, - "line": 1031 - } + "java.util.List com.intellij.util.containers.ContainerUtil.findAll(java.util.Collection, com.intellij.openapi.util.Condition)[]@ContainerUtil.java:1031" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "java.util.List com.intellij.util.containers.ContainerUtil.filter(java.util.Collection, com.intellij.openapi.util.Condition)", - "filename": "ContainerUtil.java" - }, - "line": 1006 - } + "java.util.List com.intellij.util.containers.ContainerUtil.filter(java.util.Collection, com.intellij.openapi.util.Condition)[]@ContainerUtil.java:1006" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "java.util.List com.intellij.psi.search.scope.packageSet.CustomScopesProvider.getFilteredScopes()", - "filename": "CustomScopesProvider.java" - }, - "line": 17 - } + "java.util.List com.intellij.psi.search.scope.packageSet.CustomScopesProvider.getFilteredScopes()[]@CustomScopesProvider.java:17" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f", "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getPredefinedScope(java.lang.String)", - "filename": "DependencyValidationManagerImpl.java" - }, - "line": 69 - } + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getPredefinedScope(java.lang.String)[]@DependencyValidationManagerImpl.java:69" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x34", "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getScope(java.lang.String)", - "filename": "NamedScopesHolder.java" - }, - "line": 172 - } + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getScope(java.lang.String)[]@NamedScopesHolder.java:172" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String, com.intellij.packageDependencies.DependencyValidationManagerImpl$State)", - "filename": "DependencyValidationManagerImpl.java" - }, - "line": 253 - } + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String, com.intellij.packageDependencies.DependencyValidationManagerImpl$State)[]@DependencyValidationManagerImpl.java:253" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String)", - "filename": "DependencyValidationManagerImpl.java" - }, - "line": 249 - } + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String)[]@DependencyValidationManagerImpl.java:249" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "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)", - "filename": "NamedScopesHolder.java" - }, - "line": 117 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3c", "lines": [ - { - "function": { - "name": "com.intellij.ui.tabs.FileColorConfiguration com.intellij.ui.tabs.FileColorsModel.findConfiguration(com.intellij.openapi.vfs.VirtualFile)", - "filename": "FileColorsModel.java" - }, - "line": 240 - } + "com.intellij.ui.tabs.FileColorConfiguration com.intellij.ui.tabs.FileColorsModel.findConfiguration(com.intellij.openapi.vfs.VirtualFile)[]@FileColorsModel.java:240" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.lambda$getColor$0(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", - "filename": "FileColorsModel.java" - }, - "line": 210 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tabs.FileColorsModel$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.tabs.FileColorsModel$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 272 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:272" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 262 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:262" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)", - "filename": "ApplicationImpl.java" - }, - "line": 863 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:863" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", - "filename": "ReadAction.java" - }, - "line": 66 - } + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@ReadAction.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.getColor(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", - "filename": "FileColorsModel.java" - }, - "line": 209 - } + "java.lang.String com.intellij.ui.tabs.FileColorsModel.getColor(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)[]@FileColorsModel.java:209" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ui.tabs.FileColorManagerImpl.getFileColor(com.intellij.openapi.vfs.VirtualFile)", - "filename": "FileColorManagerImpl.java" - }, - "line": 153 - } + "java.awt.Color com.intellij.ui.tabs.FileColorManagerImpl.getFileColor(com.intellij.openapi.vfs.VirtualFile)[]@FileColorManagerImpl.java:153" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1f", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ui.tabs.EditorTabColorProviderImpl.getProjectViewColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "EditorTabColorProviderImpl.java" - }, - "line": 31 - } + "java.awt.Color com.intellij.ui.tabs.EditorTabColorProviderImpl.getProjectViewColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@EditorTabColorProviderImpl.java:31" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x35", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.openapi.fileEditor.impl.EditorTabPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "EditorTabPresentationUtil.kt" - }, - "line": 88 - } + "java.awt.Color com.intellij.openapi.fileEditor.impl.EditorTabPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@EditorTabPresentationUtil.kt:88" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.openapi.vfs.newvfs.VfsPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "VfsPresentationUtil.java" - }, - "line": 41 - } + "java.awt.Color com.intellij.openapi.vfs.newvfs.VfsPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@VfsPresentationUtil.java:41" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.openapi.vfs.VirtualFile)", - "filename": "FilePresentationServiceImpl.kt" - }, - "line": 21 - } + "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.openapi.vfs.VirtualFile)[]@FilePresentationServiceImpl.kt:21" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.psi.PsiElement)", - "filename": "FilePresentationServiceImpl.kt" - }, - "line": 30 - } + "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.psi.PsiElement)[]@FilePresentationServiceImpl.kt:30" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ide.util.treeView.AbstractTreeNode.computeBackgroundColor()", - "filename": "AbstractTreeNode.java" - }, - "line": 290 - } + "java.awt.Color com.intellij.ide.util.treeView.AbstractTreeNode.computeBackgroundColor()[]@AbstractTreeNode.java:290" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ide.projectView.ProjectViewNode.computeBackgroundColor()", - "filename": "ProjectViewNode.java" - }, - "line": 361 - } + "java.awt.Color com.intellij.ide.projectView.ProjectViewNode.computeBackgroundColor()[]@ProjectViewNode.java:361" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "com.intellij.ide.projectView.PresentationData com.intellij.ide.util.treeView.PresentableNodeDescriptor.getUpdatedPresentation()", - "filename": "PresentableNodeDescriptor.java" - }, - "line": 87 - } + "com.intellij.ide.projectView.PresentationData com.intellij.ide.util.treeView.PresentableNodeDescriptor.getUpdatedPresentation()[]@PresentableNodeDescriptor.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.ide.util.treeView.PresentableNodeDescriptor.update()", - "filename": "PresentableNodeDescriptor.java" - }, - "line": 32 - } + "boolean com.intellij.ide.util.treeView.PresentableNodeDescriptor.update()[]@PresentableNodeDescriptor.java:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "boolean com.intellij.ui.tree.StructureTreeModel$Node.update()", - "filename": "StructureTreeModel.java" - }, - "line": 540 - } + "boolean com.intellij.ui.tree.StructureTreeModel$Node.update()[]@StructureTreeModel.java:540" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8d", "lines": [ - { - "function": { - "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.invalidateInternal(com.intellij.ui.tree.StructureTreeModel$Node, boolean)", - "filename": "StructureTreeModel.java" - }, - "line": 247 - } + "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.invalidateInternal(com.intellij.ui.tree.StructureTreeModel$Node, boolean)[]@StructureTreeModel.java:247" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.lambda$invalidate$5(boolean, com.intellij.ui.tree.StructureTreeModel$Node)", - "filename": "StructureTreeModel.java" - }, - "line": 211 - } + "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.lambda$invalidate$5(boolean, com.intellij.ui.tree.StructureTreeModel$Node)[]@StructureTreeModel.java:211" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "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)", - "filename": "StructureTreeModel.java" - }, - "line": 146 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$1(java.util.function.Function, java.util.concurrent.CompletableFuture)", - "filename": "StructureTreeModel.java" - }, - "line": 124 - } + "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$1(java.util.function.Function, java.util.concurrent.CompletableFuture)[]@StructureTreeModel.java:124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.get()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.get()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$Task.run()", - "filename": "Invoker.java" - }, - "line": 361 - } + "void com.intellij.util.concurrency.Invoker$Task.run()[]@Invoker.java:361" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.concurrency.CoroutineInvokerDelegate.run(java.lang.Runnable, org.jetbrains.concurrency.AsyncPromise)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 38 - } + "boolean com.intellij.util.concurrency.CoroutineInvokerDelegate.run(java.lang.Runnable, org.jetbrains.concurrency.AsyncPromise)[]@CoroutineInvokerDelegate.kt:38" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1d", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker.invokeSafely(com.intellij.util.concurrency.Invoker$Task, int)", - "filename": "Invoker.java" - }, - "line": 189 - } + "void com.intellij.util.concurrency.Invoker.invokeSafely(com.intellij.util.concurrency.Invoker$Task, int)[]@Invoker.java:189" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(com.intellij.util.concurrency.Invoker$Task, int)", - "filename": "Invoker.java" - }, - "line": 173 - } + "void com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(com.intellij.util.concurrency.Invoker$Task, int)[]@Invoker.java:173" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.util.concurrency.Invoker$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1d", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$Background.lambda$offer$0(java.lang.Runnable)", - "filename": "Invoker.java" - }, - "line": 470 - } + "void com.intellij.util.concurrency.Invoker$Background.lambda$offer$0(java.lang.Runnable)[]@Invoker.java:470" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$Background$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.util.concurrency.Invoker$Background$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.util.concurrency.CoroutineInvokerDelegate.offer$lambda$2(java.lang.Runnable, com.intellij.util.concurrency.CoroutineInvokerDelegate)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 27 - } + "kotlin.Unit com.intellij.util.concurrency.CoroutineInvokerDelegate.offer$lambda$2(java.lang.Runnable, com.intellij.util.concurrency.CoroutineInvokerDelegate)[]@CoroutineInvokerDelegate.kt:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.CoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.util.concurrency.CoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend$lambda$1$lambda$0(kotlin.jvm.functions.Function0)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 97 - } + "kotlin.Unit com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend$lambda$1$lambda$0(kotlin.jvm.functions.Function0)[]@CoroutineInvokerDelegate.kt:97" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext$lambda$0(kotlin.jvm.functions.Function0)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 73 - } + "kotlin.Unit com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext$lambda$0(kotlin.jvm.functions.Function0)[]@CoroutineInvokerDelegate.kt:73" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 72 - } + "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@CoroutineInvokerDelegate.kt:72" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend(java.lang.Object)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 96 - } + "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend(java.lang.Object)[]@CoroutineInvokerDelegate.kt:96" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xb933f9da77f680a", "lines": [ - { - "function": { - "name": "vtable chunks" - } - } + "vtable chunks[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd1", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x150f38", "lines": [ - { - "function": { - "name": "finish_task_switch.isra.0" - } - } + "finish_task_switch.isra.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1240963", "lines": [ - { - "function": { - "name": "__schedule" - } - } + "__schedule[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1240dd2", "lines": [ - { - "function": { - "name": "schedule" - } - } + "schedule[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2262e3", "lines": [ - { - "function": { - "name": "futex_wait_queue" - } - } + "futex_wait_queue[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x226ac4", "lines": [ - { - "function": { - "name": "__futex_wait" - } - } + "__futex_wait[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x226bc3", "lines": [ - { - "function": { - "name": "futex_wait" - } - } + "futex_wait[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x222894", "lines": [ - { - "function": { - "name": "do_futex" - } - } + "do_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x223159", "lines": [ - { - "function": { - "name": "__x64_sys_futex" - } - } + "__x64_sys_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x55d0", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x98d60", "lines": [ - { - "function": { - "name": "libc.so.6 0x98d60" - } - } + "libc.so.6 0x98d60[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x9bc7d", "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } + "libc.so.6 0x9bc7d[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xd141d3", "lines": [ - { - "function": { - "name": "libjvm.so 0xd141d3" - } - } + "libjvm.so 0xd141d3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xfb3d80", "lines": [ - { - "function": { - "name": "libjvm.so 0xfb3d80" - } - } + "libjvm.so 0xfb3d80[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "void jdk.internal.misc.Unsafe.park(boolean, long)", - "filename": "Unsafe.java" - } - } + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@Unsafe.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", - "filename": "LockSupport.java" - }, - "line": 410 - } + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1f", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()", - "filename": "CoroutineScheduler.kt" - }, - "line": 924 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@CoroutineScheduler.kt:924" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x63", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()", - "filename": "CoroutineScheduler.kt" - }, - "line": 860 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@CoroutineScheduler.kt:860" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x62", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 795 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:795" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xc", "lines": [ - { - "function": { - "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", - "filename": "String.java" - }, - "line": 1425 - } + "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)[]@String.java:1425" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", - "filename": "StringsJVM.kt" - }, - "line": 217 - } + "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])[]@StringsJVM.kt:217" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", - "filename": "Encoding.kt" - }, - "line": 384 - } + "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()[]@Encoding.kt:384" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", - "filename": "Encoding.kt" - }, - "line": 288 - } + "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()[]@Encoding.kt:288" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "Primitives.kt" - }, - "line": 160 - } + "java.lang.String kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@Primitives.kt:160" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "Primitives.kt" - }, - "line": 156 - } + "java.lang.Object kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@Primitives.kt:156" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1d", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 100 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:100" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "void java.lang.String.\u003cinit\u003e(java.nio.charset.Charset, byte[], int, int)", - "filename": "String.java" - }, - "line": 532 - } + "void java.lang.String.\u003cinit\u003e(java.nio.charset.Charset, byte[], int, int)[]@String.java:532" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", - "filename": "String.java" - }, - "line": 1425 - } + "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)[]@String.java:1425" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", - "filename": "StringsJVM.kt" - }, - "line": 217 - } + "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])[]@StringsJVM.kt:217" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", - "filename": "Encoding.kt" - }, - "line": 384 - } + "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()[]@Encoding.kt:384" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", - "filename": "Encoding.kt" - }, - "line": 288 - } + "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()[]@Encoding.kt:288" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", - "filename": "AbstractDecoder.kt" - }, - "line": 58 - } + "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)[]@AbstractDecoder.kt:58" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xbd", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } + "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd1", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "int kotlinx.serialization.cbor.internal.CborListReader.decodeElementIndex(kotlinx.serialization.descriptors.SerialDescriptor)", - "filename": "Encoding.kt" - } - } + "int kotlinx.serialization.cbor.internal.CborListReader.decodeElementIndex(kotlinx.serialization.descriptors.SerialDescriptor)[]@Encoding.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 34 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd1", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x6f6353f7de2420d8", "lines": [ - { - "function": { - "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" - } - } + "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readExact(kotlinx.serialization.cbor.internal.ByteArrayInput, int)", - "filename": "Encoding.kt" - }, - "line": 432 - } + "long kotlinx.serialization.cbor.internal.CborDecoder.readExact(kotlinx.serialization.cbor.internal.ByteArrayInput, int)[]@Encoding.kt:432" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68", "lines": [ - { - "function": { - "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readNumber()", - "filename": "Encoding.kt" - }, - "line": 426 - } + "long kotlinx.serialization.cbor.internal.CborDecoder.readNumber()[]@Encoding.kt:426" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "byte[] kotlinx.serialization.cbor.internal.CborDecoder.readBytes()", - "filename": "Encoding.kt" - }, - "line": 394 - } + "byte[] kotlinx.serialization.cbor.internal.CborDecoder.readBytes()[]@Encoding.kt:394" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", - "filename": "Encoding.kt" - }, - "line": 383 - } + "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()[]@Encoding.kt:383" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", - "filename": "Encoding.kt" - }, - "line": 288 - } + "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()[]@Encoding.kt:288" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", - "filename": "AbstractDecoder.kt" - }, - "line": 58 - } + "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)[]@AbstractDecoder.kt:58" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xbd", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } + "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd1", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x61", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 1034 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@CoroutineScheduler.kt:1034" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 999 - } + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@CoroutineScheduler.kt:999" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 758 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:758" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xfd", "lines": [ - { - "function": { - "name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", - "filename": "HashMap.java" - }, - "line": 663 - } + "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)[]@HashMap.java:663" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)", - "filename": "HashMap.java" - }, - "line": 618 - } + "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)[]@HashMap.java:618" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdb", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 113 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4c", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x81", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc5", "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x77", "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc2", "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", - "filename": "InternalReadAction.kt" - }, - "line": 114 - } + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 103 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 87 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 74 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)", - "filename": "InternalReadAction.kt" - } - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x189", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", - "filename": "AbstractCoroutine.kt" - }, - "line": 97 - } + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@AbstractCoroutine.kt:97" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)", - "filename": "DebugProbesImpl.kt" - }, - "line": 545 - } + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@DebugProbesImpl.kt:545" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x76", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 46 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:46" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13d", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 102 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:102" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 608 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", - "filename": "CoroutineScheduler.kt" - }, - "line": 873 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 763 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", - "filename": "CoroutineScheduler.kt" - }, - "line": 750 - } + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xad644", "lines": [ - { - "function": { - "name": "libc.so.6 0xad644" - } - } + "libc.so.6 0xad644[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2f3db", "lines": [ - { - "function": { - "name": "libawt_xawt.so 0x2f3db" - } - } + "libawt_xawt.so 0x2f3db[]@:0" ], - "mapping": { - "start": "0x13000", - "limit": "0x5d000", - "offset": "0x13000", - "filename": "libawt_xawt.so", - "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" - } + "mapping": "0x13000-0x5d000@0x13000 libawt_xawt.so(134d9e7faf72035d5f259dcf73c8774bb044da7a)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRBackendNative.XRenderRectanglesNative(int, byte, short, short, short, short, int[], int)", - "filename": "XRBackendNative.java" - } - } + "void sun.java2d.xr.XRBackendNative.XRenderRectanglesNative(int, byte, short, short, short, short, int[], int)[]@XRBackendNative.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRBackendNative.renderRectangles(int, byte, sun.java2d.xr.XRColor, sun.java2d.xr.GrowableRectArray)", - "filename": "XRBackendNative.java" - }, - "line": 217 - } + "void sun.java2d.xr.XRBackendNative.renderRectangles(int, byte, sun.java2d.xr.XRColor, sun.java2d.xr.GrowableRectArray)[]@XRBackendNative.java:217" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "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)", - "filename": "MaskTileManager.java" - }, - "line": 183 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc8", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)", - "filename": "MaskTileManager.java" - }, - "line": 104 - } + "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)[]@MaskTileManager.java:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x27", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)", - "filename": "XRRenderer.java" - }, - "line": 275 - } + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@XRRenderer.java:275" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", - "filename": "XRRenderer.java" - }, - "line": 349 - } + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@XRRenderer.java:349" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", - "filename": "ValidatePipe.java" - }, - "line": 160 - } + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@ValidatePipe.java:160" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)", - "filename": "SunGraphics2D.java" - }, - "line": 2532 - } + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@SunGraphics2D.java:2532" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)", - "filename": "RectanglePainter2D.java" - }, - "line": 211 - } + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@RectanglePainter2D.java:211" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)", - "filename": "PaintUtil.java" - }, - "line": 402 - } + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@PaintUtil.java:402" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xde", "lines": [ - { - "function": { - "name": "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)", - "filename": "RectanglePainter2D.java" - }, - "line": 210 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x40", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", - "filename": "RectanglePainter.java" - }, - "line": 28 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", - "filename": "RectanglePainter.java" - }, - "line": 21 - } + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@RectanglePainter.java:21" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", - "filename": "RectanglePainter.java" - }, - "line": 18 - } + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@RectanglePainter.java:18" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3e", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)", - "filename": "ScrollBarPainter.java" - }, - "line": 212 - } + "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@ScrollBarPainter.java:212" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", - "filename": "ScrollBarPainter.java" - }, - "line": 192 - } + "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@ScrollBarPainter.java:192" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe9", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 150 - } + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@DefaultScrollBarUI.kt:150" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1e", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paintTrack(java.awt.Graphics2D, javax.swing.JComponent)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 115 - } + "void com.intellij.ui.components.DefaultScrollBarUI.paintTrack(java.awt.Graphics2D, javax.swing.JComponent)[]@DefaultScrollBarUI.kt:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x240", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 309 - } + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultScrollBarUI.kt:309" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", - "filename": "ComponentUI.java" - }, - "line": 161 - } + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 855 - } + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 243 - } + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 231 - } + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2ab", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5267 - } + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5077 - } + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 887 - } + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 843 - } + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 789 - } + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", - "filename": "RepaintManager.java" - }, - "line": 1921 - } + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1cc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 387 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x324", "lines": [ - { - "function": { - "name": "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)", - "filename": "XRTextRenderer.java" - }, - "line": 95 - } + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@XRTextRenderer.java:95" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa5", "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", - "filename": "GlyphListPipe.java" - }, - "line": 71 - } + "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@GlyphListPipe.java:71" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", - "filename": "ValidatePipe.java" - }, - "line": 165 - } + "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@ValidatePipe.java:165" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x42", "lines": [ - { - "function": { - "name": "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)", - "filename": "SunGraphics2D.java" - }, - "line": 2962 - } + "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)[]@SunGraphics2D.java:2962" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)", - "filename": "SimpleColoredComponent.java" - }, - "line": 1500 - } + "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)[]@SimpleColoredComponent.java:1500" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x34", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)", - "filename": "SimpleColoredComponent.java" - }, - "line": 536 - } + "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)[]@SimpleColoredComponent.java:536" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ea", "lines": [ - { - "function": { - "name": "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)", - "filename": "SimpleColoredComponent.java" - }, - "line": 895 - } + "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)[]@SimpleColoredComponent.java:895" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x54", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)", - "filename": "SimpleColoredComponent.java" - }, - "line": 766 - } + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@SimpleColoredComponent.java:766" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)", - "filename": "SimpleColoredComponent.java" - }, - "line": 745 - } + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@SimpleColoredComponent.java:745" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@CellRendererPane.java:170" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultTreeUI.java:372" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", - "filename": "ComponentUI.java" - }, - "line": 161 - } + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 855 - } + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x41", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", - "filename": "Tree.java" - }, - "line": 381 - } + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@Tree.java:381" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", - "filename": "Tree.java" - }, - "line": 312 - } + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@Tree.java:312" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xcd", "lines": [ - { - "function": { - "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", - "filename": "JViewport.java" - }, - "line": 736 - } + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", - "filename": "JBViewport.java" - }, - "line": 240 - } + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 243 - } + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 231 - } + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2ab", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5267 - } + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5077 - } + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 887 - } + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 843 - } + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 789 - } + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", - "filename": "RepaintManager.java" - }, - "line": 1921 - } + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1cc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 387 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x15eefa", "lines": [ - { - "function": { - "name": "try_to_wake_up" - } - } + "try_to_wake_up[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15f46f", "lines": [ - { - "function": { - "name": "wake_up_q" - } - } + "wake_up_q[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x225ea6", "lines": [ - { - "function": { - "name": "futex_wake" - } - } + "futex_wake[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x22291d", "lines": [ - { - "function": { - "name": "do_futex" - } - } + "do_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x223159", "lines": [ - { - "function": { - "name": "__x64_sys_futex" - } - } + "__x64_sys_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x55d0", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9b05e", "lines": [ - { - "function": { - "name": "libc.so.6 0x9b05e" - } - } + "libc.so.6 0x9b05e[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xfb2099", "lines": [ - { - "function": { - "name": "libjvm.so 0xfb2099" - } - } + "libjvm.so 0xfb2099[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)", - "filename": "Unsafe.java" - } - } + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@Unsafe.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", - "filename": "LockSupport.java" - }, - "line": 181 - } + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@LockSupport.java:181" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1e", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", - "filename": "AbstractQueuedSynchronizer.java" - }, - "line": 645 - } + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)[]@AbstractQueuedSynchronizer.java:645" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", - "filename": "AbstractQueuedSynchronizer.java" - }, - "line": 1060 - } + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)[]@AbstractQueuedSynchronizer.java:1060" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.ReentrantLock.unlock()", - "filename": "ReentrantLock.java" - }, - "line": 494 - } + "void java.util.concurrent.locks.ReentrantLock.unlock()[]@ReentrantLock.java:494" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void sun.awt.SunToolkit.awtUnlock()", - "filename": "SunToolkit.java" - }, - "line": 271 - } + "void sun.awt.SunToolkit.awtUnlock()[]@SunToolkit.java:271" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x38", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)", - "filename": "XComponentPeer.java" - }, - "line": 726 - } + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)[]@XComponentPeer.java:726" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor)", - "filename": "XComponentPeer.java" - }, - "line": 699 - } + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor)[]@XComponentPeer.java:699" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XGlobalCursorManager.updateGrabbedCursor(java.awt.Cursor)", - "filename": "XGlobalCursorManager.java" - }, - "line": 107 - } + "void sun.awt.X11.XGlobalCursorManager.updateGrabbedCursor(java.awt.Cursor)[]@XGlobalCursorManager.java:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x89", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)", - "filename": "XGlobalCursorManager.java" - }, - "line": 94 - } + "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)[]@XGlobalCursorManager.java:94" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9c", "lines": [ - { - "function": { - "name": "void sun.awt.GlobalCursorManager._updateCursor(boolean)", - "filename": "GlobalCursorManager.java" - }, - "line": 205 - } + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@GlobalCursorManager.java:205" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "void sun.awt.GlobalCursorManager.updateCursorImmediately()", - "filename": "GlobalCursorManager.java" - }, - "line": 95 - } + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@GlobalCursorManager.java:95" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.updateCursorImmediately()", - "filename": "XComponentPeer.java" - }, - "line": 695 - } + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@XComponentPeer.java:695" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x31", "lines": [ - { - "function": { - "name": "void java.awt.Component.updateCursorImmediately()", - "filename": "Component.java" - }, - "line": 3262 - } + "void java.awt.Component.updateCursorImmediately()[]@Component.java:3262" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void java.awt.Component.show()", - "filename": "Component.java" - }, - "line": 1730 - } + "void java.awt.Component.show()[]@Component.java:1730" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x30", "lines": [ - { - "function": { - "name": "void java.awt.Window.show()", - "filename": "Window.java" - }, - "line": 1078 - } + "void java.awt.Window.show()[]@Window.java:1078" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void javax.swing.Popup$HeavyWeightWindow.show()", - "filename": "Popup.java" - }, - "line": 270 - } + "void javax.swing.Popup$HeavyWeightWindow.show()[]@Popup.java:270" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void javax.swing.Popup.show()", - "filename": "Popup.java" - }, - "line": 112 - } + "void javax.swing.Popup.show()[]@Popup.java:112" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ui.popup.HeavyWeightPopup.show()", - "filename": "HeavyWeightPopup.java" - }, - "line": 21 - } + "void com.intellij.ui.popup.HeavyWeightPopup.show()[]@HeavyWeightPopup.java:21" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x61", "lines": [ - { - "function": { - "name": "void javax.swing.JPopupMenu.showPopup()", - "filename": "JPopupMenu.java" - }, - "line": 886 - } + "void javax.swing.JPopupMenu.showPopup()[]@JPopupMenu.java:886" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x75", "lines": [ - { - "function": { - "name": "void javax.swing.JPopupMenu.setVisible(boolean)", - "filename": "JPopupMenu.java" - }, - "line": 829 - } + "void javax.swing.JPopupMenu.setVisible(boolean)[]@JPopupMenu.java:829" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.setVisible(boolean)", - "filename": "ActionPopupMenuImpl.java" - }, - "line": 164 - } + "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.setVisible(boolean)[]@ActionPopupMenuImpl.java:164" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9e", "lines": [ - { - "function": { - "name": "void javax.swing.JPopupMenu.show(java.awt.Component, int, int)", - "filename": "JPopupMenu.java" - }, - "line": 1003 - } + "void javax.swing.JPopupMenu.show(java.awt.Component, int, int)[]@JPopupMenu.java:1003" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.ui.JBPopupMenu.show(java.awt.Component, int, int)", - "filename": "JBPopupMenu.java" - }, - "line": 54 - } + "void com.intellij.openapi.ui.JBPopupMenu.show(java.awt.Component, int, int)[]@JBPopupMenu.java:54" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x135", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.show(java.awt.Component, int, int)", - "filename": "ActionPopupMenuImpl.java" - }, - "line": 146 - } + "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.show(java.awt.Component, int, int)[]@ActionPopupMenuImpl.java:146" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5f", "lines": [ - { - "function": { - "name": "void com.intellij.ui.PopupHandler$2.invokePopup(java.awt.Component, int, int)", - "filename": "PopupHandler.java" - }, - "line": 132 - } + "void com.intellij.ui.PopupHandler$2.invokePopup(java.awt.Component, int, int)[]@PopupHandler.java:132" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.ui.PopupHandler.mousePressed(java.awt.event.MouseEvent)", - "filename": "PopupHandler.java" - }, - "line": 47 - } + "void com.intellij.ui.PopupHandler.mousePressed(java.awt.event.MouseEvent)[]@PopupHandler.java:47" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", - "filename": "AWTEventMulticaster.java" - }, - "line": 288 - } + "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)[]@AWTEventMulticaster.java:288" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", - "filename": "AWTEventMulticaster.java" - }, - "line": 287 - } + "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)[]@AWTEventMulticaster.java:287" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x36", "lines": [ - { - "function": { - "name": "void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Component.java" - }, - "line": 6659 - } + "void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)[]@Component.java:6659" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "JComponent.java" - }, - "line": 3394 - } + "void javax.swing.JComponent.processMouseEvent(java.awt.event.MouseEvent)[]@JComponent.java:3394" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x29", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Tree.java" - }, - "line": 479 - } + "void com.intellij.ui.treeStructure.Tree.processMouseEvent(java.awt.event.MouseEvent)[]@Tree.java:479" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.ide.dnd.aware.DnDAwareTree.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "DnDAwareTree.java" - }, - "line": 46 - } + "void com.intellij.ide.dnd.aware.DnDAwareTree.processMouseEvent(java.awt.event.MouseEvent)[]@DnDAwareTree.java:46" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.Component.processEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 6427 - } + "void java.awt.Component.processEvent(java.awt.AWTEvent)[]@Component.java:6427" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.Container.processEvent(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2266 - } + "void java.awt.Container.processEvent(java.awt.AWTEvent)[]@Container.java:2266" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x228", "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 5032 - } + "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)[]@Component.java:5032" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2324 - } + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2324" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a1", "lines": [ - { - "function": { - "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4963 - } + "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)[]@Container.java:4963" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x90", "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4574 - } + "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)[]@Container.java:4574" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x32", "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 4518 - } + "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)[]@Container.java:4518" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2310 - } + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2310" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Window.java" - }, - "line": 2810 - } + "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)[]@Window.java:2810" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x29", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 783 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:783" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "ProtectionDomain.java" - }, - "line": 98 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@ProtectionDomain.java:98" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 755 - } + "java.lang.Void java.awt.EventQueue$5.run()[]@EventQueue.java:755" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 753 - } + "java.lang.Object java.awt.EventQueue$5.run()[]@EventQueue.java:753" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 752 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:752" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x43", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 621 - } + "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)[]@IdeEventQueue.kt:621" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } + "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:564" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x115", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:564" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 117 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x7", "lines": [ - { - "function": { - "name": "java.util.Set kotlin.collections.SetsKt__SetsJVMKt.setOf(java.lang.Object)", - "filename": "SetsJVM.kt" - }, - "line": 20 - } + "java.util.Set kotlin.collections.SetsKt__SetsJVMKt.setOf(java.lang.Object)[]@SetsJVM.kt:20" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "kotlinx.coroutines.Job com.intellij.ui.DeferredIconImpl.scheduleEvaluation(java.awt.Component, int, int)", - "filename": "DeferredIconImpl.kt" - }, - "line": 200 - } + "kotlinx.coroutines.Job com.intellij.ui.DeferredIconImpl.scheduleEvaluation(java.awt.Component, int, int)[]@DeferredIconImpl.kt:200" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4e", "lines": [ - { - "function": { - "name": "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "DeferredIconImpl.kt" - }, - "line": 163 - } + "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@DeferredIconImpl.kt:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa5", "lines": [ - { - "function": { - "name": "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "RowIcon.kt" - }, - "line": 110 - } + "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@RowIcon.kt:110" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)", - "filename": "IconUtil.kt" - }, - "line": 251 - } + "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)[]@IconUtil.kt:251" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3c", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)", - "filename": "SimpleColoredComponent.java" - }, - "line": 1089 - } + "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)[]@SimpleColoredComponent.java:1089" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x86", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)", - "filename": "SimpleColoredComponent.java" - }, - "line": 801 - } + "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)[]@SimpleColoredComponent.java:801" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)", - "filename": "SimpleColoredComponent.java" - }, - "line": 761 - } + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@SimpleColoredComponent.java:761" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)", - "filename": "SimpleColoredComponent.java" - }, - "line": 745 - } + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@SimpleColoredComponent.java:745" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@CellRendererPane.java:170" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultTreeUI.java:372" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", - "filename": "ComponentUI.java" - }, - "line": 161 - } + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 855 - } + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x41", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", - "filename": "Tree.java" - }, - "line": 381 - } + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@Tree.java:381" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x100", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1124 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", - "filename": "Tree.java" - }, - "line": 312 - } + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@Tree.java:312" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xcd", "lines": [ - { - "function": { - "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", - "filename": "JViewport.java" - }, - "line": 736 - } + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", - "filename": "JBViewport.java" - }, - "line": 240 - } + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x204", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 964 - } + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 243 - } + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", - "filename": "JComponent.java" - }, - "line": 1133 - } + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", - "filename": "JBScrollPane.java" - }, - "line": 231 - } + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2ab", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5267 - } + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8a", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", - "filename": "JComponent.java" - }, - "line": 5077 - } + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "java.lang.Void javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 887 - } + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object javax.swing.RepaintManager$4.run()", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9a", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", - "filename": "RepaintManager.java" - }, - "line": 870 - } + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.paintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 843 - } + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", - "filename": "RepaintManager.java" - }, - "line": 789 - } + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", - "filename": "RepaintManager.java" - }, - "line": 1921 - } + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1cc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 387 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2088 - } + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2088" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x43", "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x43", "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x43", "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x43", "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2084 - } + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)[]@SunToolkit.java:2084" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void javax.swing.LookAndFeel.installProperty(javax.swing.JComponent, java.lang.String, java.lang.Object)", - "filename": "LookAndFeel.java" - }, - "line": 280 - } + "void javax.swing.LookAndFeel.installProperty(javax.swing.JComponent, java.lang.String, java.lang.Object)[]@LookAndFeel.java:280" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.basic.BasicLabelUI.installDefaults(javax.swing.JLabel)", - "filename": "BasicLabelUI.java" - }, - "line": 369 - } + "void javax.swing.plaf.basic.BasicLabelUI.installDefaults(javax.swing.JLabel)[]@BasicLabelUI.java:369" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void javax.swing.plaf.basic.BasicLabelUI.installUI(javax.swing.JComponent)", - "filename": "BasicLabelUI.java" - }, - "line": 348 - } + "void javax.swing.plaf.basic.BasicLabelUI.installUI(javax.swing.JComponent)[]@BasicLabelUI.java:348" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x41", "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.setUI(javax.swing.plaf.ComponentUI)", - "filename": "JComponent.java" - }, - "line": 743 - } + "void javax.swing.JComponent.setUI(javax.swing.plaf.ComponentUI)[]@JComponent.java:743" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.setUI(javax.swing.plaf.LabelUI)", - "filename": "JLabel.java" - }, - "line": 274 - } + "void javax.swing.JLabel.setUI(javax.swing.plaf.LabelUI)[]@JLabel.java:274" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.updateUI()", - "filename": "JLabel.java" - }, - "line": 288 - } + "void javax.swing.JLabel.updateUI()[]@JLabel.java:288" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x53", "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.\u003cinit\u003e(java.lang.String, javax.swing.Icon, int)", - "filename": "JLabel.java" - }, - "line": 180 - } + "void javax.swing.JLabel.\u003cinit\u003e(java.lang.String, javax.swing.Icon, int)[]@JLabel.java:180" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.\u003cinit\u003e()", - "filename": "JLabel.java" - }, - "line": 251 - } + "void javax.swing.JLabel.\u003cinit\u003e()[]@JLabel.java:251" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10d", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.$$$setupUI$$$()", - "filename": "PresentationModeProgressPanel.java" - } - } + "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.$$$setupUI$$$()[]@PresentationModeProgressPanel.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.\u003cinit\u003e(com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", - "filename": "PresentationModeProgressPanel.java" - }, - "line": 35 - } + "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.\u003cinit\u003e(com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)[]@PresentationModeProgressPanel.java:35" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.show(javax.swing.JRootPane)", - "filename": "ProcessBalloon.kt" - }, - "line": 63 - } + "void com.intellij.openapi.wm.impl.status.ProcessBalloon.show(javax.swing.JRootPane)[]@ProcessBalloon.kt:63" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.addIndicator(javax.swing.JRootPane, com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", - "filename": "ProcessBalloon.kt" - }, - "line": 36 - } + "void com.intellij.openapi.wm.impl.status.ProcessBalloon.addIndicator(javax.swing.JRootPane, com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)[]@ProcessBalloon.kt:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.InfoAndProgressPanel.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", - "filename": "InfoAndProgressPanel.kt" - }, - "line": 248 - } + "void com.intellij.openapi.wm.impl.status.InfoAndProgressPanel.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)[]@InfoAndProgressPanel.kt:248" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x59", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgressImpl$intellij_platform_ide_impl(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", - "filename": "IdeStatusBarImpl.kt" - }, - "line": 541 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1d", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", - "filename": "IdeStatusBarImpl.kt" - }, - "line": 464 - } + "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)[]@IdeStatusBarImpl.kt:464" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.doBackground(com.intellij.openapi.wm.ex.StatusBarEx)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 163 - } + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.doBackground(com.intellij.openapi.wm.ex.StatusBarEx)[]@BackgroundableProcessIndicator.java:163" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.initializeStatusBar()", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 94 - } + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.initializeStatusBar()[]@BackgroundableProcessIndicator.java:94" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "void com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(java.lang.Runnable)", - "filename": "EdtInvocationManager.java" - }, - "line": 32 - } + "void com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(java.lang.Runnable)[]@EdtInvocationManager.java:32" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x35", "lines": [ - { - "function": { - "name": "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)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 68 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 56 - } + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo)[]@BackgroundableProcessIndicator.java:56" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 41 - } + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.progress.Task$Backgroundable)[]@BackgroundableProcessIndicator.java:41" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4d", "lines": [ - { - "function": { - "name": "com.intellij.openapi.progress.ProgressIndicator com.intellij.openapi.progress.impl.ProgressManagerImpl.createDefaultAsynchronousProgressIndicator(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "ProgressManagerImpl.java" - }, - "line": 149 - } + "com.intellij.openapi.progress.ProgressIndicator com.intellij.openapi.progress.impl.ProgressManagerImpl.createDefaultAsynchronousProgressIndicator(com.intellij.openapi.progress.Task$Backgroundable)[]@ProgressManagerImpl.java:149" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.util.concurrent.Future com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "CoreProgressManager.java" - }, - "line": 476 - } + "java.util.concurrent.Future com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)[]@CoreProgressManager.java:476" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3b", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "CoreProgressManager.java" - }, - "line": 453 - } + "void com.intellij.openapi.progress.impl.CoreProgressManager.runAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)[]@CoreProgressManager.java:453" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5f", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.run(com.intellij.openapi.progress.Task)", - "filename": "CoreProgressManager.java" - }, - "line": 436 - } + "void com.intellij.openapi.progress.impl.CoreProgressManager.run(com.intellij.openapi.progress.Task)[]@CoreProgressManager.java:436" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x26", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startInBackgroundWithVisibleOrInvisibleProgress(kotlin.jvm.functions.Function1)", - "filename": "MergingQueueGuiExecutor.kt" - }, - "line": 205 - } + "void com.intellij.openapi.project.MergingQueueGuiExecutor.startInBackgroundWithVisibleOrInvisibleProgress(kotlin.jvm.functions.Function1)[]@MergingQueueGuiExecutor.kt:205" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess$lambda$6(com.intellij.openapi.project.MergingQueueGuiExecutor, kotlin.jvm.functions.Function0, com.intellij.openapi.project.SingleTaskExecutor$AutoclosableProgressive)", - "filename": "MergingQueueGuiExecutor.kt" - }, - "line": 153 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.project.MergingQueueGuiExecutor$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa3", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.project.SingleTaskExecutor.tryStartProcess(java.util.function.Consumer)", - "filename": "SingleTaskExecutor.kt" - }, - "line": 105 - } + "boolean com.intellij.openapi.project.SingleTaskExecutor.tryStartProcess(java.util.function.Consumer)[]@SingleTaskExecutor.kt:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess(kotlin.jvm.functions.Function0)", - "filename": "MergingQueueGuiExecutor.kt" - }, - "line": 148 - } + "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess(kotlin.jvm.functions.Function0)[]@MergingQueueGuiExecutor.kt:148" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher.launch()", - "filename": "DumbServiceImpl.kt" - }, - "line": 116 - } + "void com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher.launch()[]@DumbServiceImpl.kt:116" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$queueTaskOnEdt$1.invokeSuspend(java.lang.Object)", - "filename": "DumbServiceImpl.kt" - }, - "line": 433 - } + "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$queueTaskOnEdt$1.invokeSuspend(java.lang.Object)[]@DumbServiceImpl.kt:433" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x33", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", - "filename": "DispatchedRunnable.kt" - }, - "line": 44 - } + "void com.intellij.openapi.application.impl.DispatchedRunnable.run()[]@DispatchedRunnable.kt:44" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 236 - } + "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)[]@TransactionGuardImpl.java:236" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 25 - } + "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)[]@TransactionGuardImpl.java:25" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", - "filename": "TransactionGuardImpl.java" - }, - "line": 218 - } + "void com.intellij.openapi.application.TransactionGuardImpl$2.run()[]@TransactionGuardImpl.java:218" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)[]@FlushQueue.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x31", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.FlushQueue.flushNow()", - "filename": "FlushQueue.java" - }, - "line": 43 - } + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@FlushQueue.java:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x67", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.AsyncFileListener$ChangeApplier com.intellij.workspaceModel.ide.impl.WorkspaceModelRootWatcher.prepareChange(java.util.List)", - "filename": "WorkspaceModelRootWatcher.kt" - }, - "line": 18 - } + "com.intellij.openapi.vfs.AsyncFileListener$ChangeApplier com.intellij.workspaceModel.ide.impl.WorkspaceModelRootWatcher.prepareChange(java.util.List)[]@WorkspaceModelRootWatcher.kt:18" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport.lambda$runAsyncListeners$0(java.util.List, com.intellij.openapi.vfs.AsyncFileListener, java.util.List)", - "filename": "AsyncEventSupport.java" - }, - "line": 90 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 258 - } + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x21", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 272 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:272" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 258 - } + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 853 - } + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@ApplicationImpl.java:853" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7c", "lines": [ - { - "function": { - "name": "java.util.List com.intellij.openapi.vfs.newvfs.AsyncEventSupport.runAsyncListeners(java.util.List)", - "filename": "AsyncEventSupport.java" - }, - "line": 90 - } + "java.util.List com.intellij.openapi.vfs.newvfs.AsyncEventSupport.runAsyncListeners(java.util.List)[]@AsyncEventSupport.java:90" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1.before(java.util.List)", - "filename": "AsyncEventSupport.java" - }, - "line": 54 - } + "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1.before(java.util.List)[]@AsyncEventSupport.java:54" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e27444a4000.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } + "void java.lang.invoke.LambdaForm$DMH+0x00007e27444a4000.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x37", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec400.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec400.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 768 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:768" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x38", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 708 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x66", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 533 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6a", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.messages.impl.ToDirectChildrenMessagePublisher.publish$intellij_platform_core(java.lang.reflect.Method, java.lang.Object[], com.intellij.util.messages.impl.MessageQueue)", - "filename": "CompositeMessageBus.kt" - }, - "line": 281 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x37", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 481 - } + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:481" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy156.before(java.util.List)", - "filename": "\u003cunknown\u003e" - } - } + "void jdk.proxy2.$Proxy156.before(java.util.List)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$fireBeforeEvents$20(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", - "filename": "PersistentFSImpl.java" - }, - "line": 1483 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$fireBeforeEvents$20(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)[]@PersistentFSImpl.java:1483" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1e", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", - "filename": "PersistentFSImpl.java" - }, - "line": 1107 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)[]@PersistentFSImpl.java:1107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x24", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.fireBeforeEvents(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", - "filename": "PersistentFSImpl.java" - }, - "line": 1482 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.fireBeforeEvents(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)[]@PersistentFSImpl.java:1482" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$processEvent$11(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", - "filename": "PersistentFSImpl.java" - }, - "line": 1088 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$processEvent$11(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)[]@PersistentFSImpl.java:1088" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1e", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", - "filename": "PersistentFSImpl.java" - }, - "line": 1107 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)[]@PersistentFSImpl.java:1107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x63", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.processEvent(com.intellij.openapi.vfs.newvfs.events.VFileEvent)", - "filename": "PersistentFSImpl.java" - }, - "line": 1087 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.processEvent(com.intellij.openapi.vfs.newvfs.events.VFileEvent)[]@PersistentFSImpl.java:1087" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x29", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.deleteFile(java.lang.Object, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PersistentFSImpl.java" - }, - "line": 762 - } + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.deleteFile(java.lang.Object, com.intellij.openapi.vfs.VirtualFile)[]@PersistentFSImpl.java:762" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.impl.VirtualFileSystemEntry.delete(java.lang.Object)", - "filename": "VirtualFileSystemEntry.java" - }, - "line": 302 - } + "void com.intellij.openapi.vfs.newvfs.impl.VirtualFileSystemEntry.delete(java.lang.Object)[]@VirtualFileSystemEntry.java:302" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x46", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.PsiFileImplUtil.doDelete(com.intellij.psi.PsiFile)", - "filename": "PsiFileImplUtil.java" - }, - "line": 92 - } + "void com.intellij.psi.impl.file.PsiFileImplUtil.doDelete(com.intellij.psi.PsiFile)[]@PsiFileImplUtil.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.PsiBinaryFileImpl.delete()", - "filename": "PsiBinaryFileImpl.java" - }, - "line": 209 - } + "void com.intellij.psi.impl.file.PsiBinaryFileImpl.delete()[]@PsiBinaryFileImpl.java:209" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.lambda$doDeleteFiles$5(com.intellij.ide.util.DeleteHandler$LocalFilesDeleteTask, com.intellij.openapi.project.Project)", - "filename": "DeleteHandler.java" - }, - "line": 335 - } + "void com.intellij.ide.util.DeleteHandler.lambda$doDeleteFiles$5(com.intellij.ide.util.DeleteHandler$LocalFilesDeleteTask, com.intellij.openapi.project.Project)[]@DeleteHandler.java:335" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 389 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:389" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 896 - } + "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)[]@ApplicationImpl.java:896" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xcc", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.doDeleteFiles(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 332 - } + "void com.intellij.ide.util.DeleteHandler.doDeleteFiles(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:332" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x46", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$0(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 225 - } + "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$0(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:225" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.fileEditor.impl.NonProjectFileWritingAccessProvider.disableChecksDuring(java.lang.Runnable)", - "filename": "NonProjectFileWritingAccessProvider.java" - }, - "line": 172 - } + "void com.intellij.openapi.fileEditor.impl.NonProjectFileWritingAccessProvider.disableChecksDuring(java.lang.Runnable)[]@NonProjectFileWritingAccessProvider.java:172" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$1(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 212 - } + "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$1(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:212" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdd", "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreCommandProcessor.java" - }, - "line": 226 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreCommandProcessor.java" - }, - "line": 178 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreCommandProcessor.java" - }, - "line": 168 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object)", - "filename": "CoreCommandProcessor.java" - }, - "line": 154 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.deleteInCommand(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 212 - } + "void com.intellij.ide.util.DeleteHandler.deleteInCommand(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:212" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15a", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project, boolean)", - "filename": "DeleteHandler.java" - }, - "line": 197 - } + "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project, boolean)[]@DeleteHandler.java:197" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project)", - "filename": "DeleteHandler.java" - }, - "line": 124 - } + "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project)[]@DeleteHandler.java:124" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x76", "lines": [ - { - "function": { - "name": "void com.intellij.ide.projectView.impl.ProjectViewDeleteElementProvider.deleteElement(com.intellij.openapi.actionSystem.DataContext)", - "filename": "ProjectViewDeleteElementProvider.java" - }, - "line": 60 - } + "void com.intellij.ide.projectView.impl.ProjectViewDeleteElementProvider.deleteElement(com.intellij.openapi.actionSystem.DataContext)[]@ProjectViewDeleteElementProvider.java:60" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a", "lines": [ - { - "function": { - "name": "void com.intellij.ide.actions.DeleteAction.actionPerformed(com.intellij.openapi.actionSystem.AnActionEvent)", - "filename": "DeleteAction.java" - }, - "line": 33 - } + "void com.intellij.ide.actions.DeleteAction.actionPerformed(com.intellij.openapi.actionSystem.AnActionEvent)[]@DeleteAction.java:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa1", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.util.function.Consumer)", - "filename": "ActionUtil.kt" - }, - "line": 374 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x28", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.ActionProcessor.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", - "filename": "ActionProcessor.java" - }, - "line": 32 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$actionProcessor$1.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 499 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 850 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 98 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(java.lang.Runnable)[]@TransactionGuardImpl.java:98" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f", "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 850 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ca", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", - "filename": "ActionManagerImpl.kt" - }, - "line": 1173 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareWithCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", - "filename": "ActionUtil.kt" - }, - "line": 396 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x32", "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 848 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 1 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x185", "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 577 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x48", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 512 - } + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor)[]@IdeKeyEventDispatcher.kt:512" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(javax.swing.KeyStroke)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 451 - } + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(javax.swing.KeyStroke)[]@IdeKeyEventDispatcher.kt:451" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x146", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState()", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 444 - } + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState()[]@IdeKeyEventDispatcher.kt:444" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c9", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(java.awt.event.KeyEvent)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 306 - } + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(java.awt.event.KeyEvent)[]@IdeKeyEventDispatcher.kt:306" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchKeyEvent(java.awt.event.KeyEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 606 - } + "void com.intellij.ide.IdeEventQueue.dispatchKeyEvent(java.awt.event.KeyEvent)[]@IdeEventQueue.kt:606" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$22(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 565 - } + "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$22(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:565" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x130", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 565 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:565" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 117 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x40f84", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x40f84" - } - } + "libX11.so.6.4.0 0x40f84[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x46148", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x46148" - } - } + "libX11.so.6.4.0 0x46148[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x2b478", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x2b478" - } - } + "libX11.so.6.4.0 0x2b478[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x737aa", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x737aa" - } - } + "libX11.so.6.4.0 0x737aa[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x74e94", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x74e94" - } - } + "libX11.so.6.4.0 0x74e94[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x78b39", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x78b39" - } - } + "libX11.so.6.4.0 0x78b39[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x632d6", "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x632d6" - } - } + "libX11.so.6.4.0 0x632d6[]@:0" ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" }, { "address": "0x3f999", "lines": [ - { - "function": { - "name": "libawt_xawt.so 0x3f999" - } - } + "libawt_xawt.so 0x3f999[]@:0" ], - "mapping": { - "start": "0x13000", - "limit": "0x5d000", - "offset": "0x13000", - "filename": "libawt_xawt.so", - "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" - } + "mapping": "0x13000-0x5d000@0x13000 libawt_xawt.so(134d9e7faf72035d5f259dcf73c8774bb044da7a)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "java.lang.String sun.awt.X11InputMethodBase.resetXIC()", - "filename": "X11InputMethodBase.java" - } - } + "java.lang.String sun.awt.X11InputMethodBase.resetXIC()[]@X11InputMethodBase.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "java.lang.String sun.awt.X11InputMethodBase.invokeResetXIC()", - "filename": "X11InputMethodBase.java" - }, - "line": 802 - } + "java.lang.String sun.awt.X11InputMethodBase.invokeResetXIC()[]@X11InputMethodBase.java:802" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XInputMethod.endComposition()", - "filename": "XInputMethod.java" - }, - "line": 135 - } + "void sun.awt.X11.XInputMethod.endComposition()[]@XInputMethod.java:135" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XInputMethod.dispatchEvent(java.awt.AWTEvent)", - "filename": "XInputMethod.java" - }, - "line": 115 - } + "void sun.awt.X11.XInputMethod.dispatchEvent(java.awt.AWTEvent)[]@XInputMethod.java:115" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa7", "lines": [ - { - "function": { - "name": "void sun.awt.im.InputContext.dispatchEvent(java.awt.AWTEvent)", - "filename": "InputContext.java" - }, - "line": 263 - } + "void sun.awt.im.InputContext.dispatchEvent(java.awt.AWTEvent)[]@InputContext.java:263" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3a", "lines": [ - { - "function": { - "name": "void sun.awt.im.InputMethodContext.dispatchEvent(java.awt.AWTEvent)", - "filename": "InputMethodContext.java" - }, - "line": 197 - } + "void sun.awt.im.InputMethodContext.dispatchEvent(java.awt.AWTEvent)[]@InputMethodContext.java:197" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16d", "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4974 - } + "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)[]@Component.java:4974" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2324 - } + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2324" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1a1", "lines": [ - { - "function": { - "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4963 - } + "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)[]@Container.java:4963" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x90", "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4574 - } + "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)[]@Container.java:4574" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x32", "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 4518 - } + "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)[]@Container.java:4518" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2310 - } + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2310" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Window.java" - }, - "line": 2810 - } + "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)[]@Window.java:2810" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x29", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 783 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:783" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "ProtectionDomain.java" - }, - "line": 98 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@ProtectionDomain.java:98" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 755 - } + "java.lang.Void java.awt.EventQueue$5.run()[]@EventQueue.java:755" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 753 - } + "java.lang.Object java.awt.EventQueue$5.run()[]@EventQueue.java:753" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 752 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:752" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x43", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 621 - } + "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)[]@IdeEventQueue.kt:621" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } + "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:564" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x115", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:564" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 117 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x3f", "lines": [ - { - "function": { - "name": "int java.util.Arrays.binarySearch0(int[], int, int, int)", - "filename": "Arrays.java" - }, - "line": 1717 - } + "int java.util.Arrays.binarySearch0(int[], int, int, int)[]@Arrays.java:1717" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "int java.util.Arrays.binarySearch(int[], int)", - "filename": "Arrays.java" - }, - "line": 1660 - } + "int java.util.Arrays.binarySearch(int[], int)[]@Arrays.java:1660" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x55", "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.impl.LineSet.findLineIndex(int)", - "filename": "LineSet.java" - }, - "line": 169 - } + "int com.intellij.openapi.editor.impl.LineSet.findLineIndex(int)[]@LineSet.java:169" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.impl.DocumentImpl.getLineNumber(int)", - "filename": "DocumentImpl.java" - }, - "line": 1034 - } + "int com.intellij.openapi.editor.impl.DocumentImpl.getLineNumber(int)[]@DocumentImpl.java:1034" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x53", "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.impl.RangeHighlighterImpl.getAffectedAreaStartOffset()", - "filename": "RangeHighlighterImpl.java" - }, - "line": 384 - } + "int com.intellij.openapi.editor.impl.RangeHighlighterImpl.getAffectedAreaStartOffset()[]@RangeHighlighterImpl.java:384" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.ex.RangeHighlighterEx$$Lambda+\u003chidden\u003e.applyAsInt(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "int com.intellij.openapi.editor.ex.RangeHighlighterEx$$Lambda+\u003chidden\u003e.applyAsInt(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "int java.util.Comparator.lambda$comparingInt$7b0bb60$1(java.util.function.ToIntFunction, java.lang.Object, java.lang.Object)", - "filename": "Comparator.java" - }, - "line": 494 - } + "int java.util.Comparator.lambda$comparingInt$7b0bb60$1(java.util.function.ToIntFunction, java.lang.Object, java.lang.Object)[]@Comparator.java:494" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "int java.util.Comparator$$Lambda+\u003chidden\u003e.compare(java.lang.Object, java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "int java.util.Comparator$$Lambda+\u003chidden\u003e.compare(java.lang.Object, java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.ex.MarkupIterator$2.choose()", - "filename": "MarkupIterator.java" - }, - "line": 71 - } + "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.ex.MarkupIterator$2.choose()[]@MarkupIterator.java:71" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.editor.ex.MarkupIterator$2.peek()", - "filename": "MarkupIterator.java" - }, - "line": 82 - } + "java.lang.Object com.intellij.openapi.editor.ex.MarkupIterator$2.peek()[]@MarkupIterator.java:82" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.peek()", - "filename": "FilteringMarkupIterator.java" - }, - "line": 29 - } + "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.peek()[]@FilteringMarkupIterator.java:29" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.FilteringMarkupIterator.skipUnrelated()", - "filename": "FilteringMarkupIterator.java" - }, - "line": 45 - } + "void com.intellij.openapi.editor.impl.FilteringMarkupIterator.skipUnrelated()[]@FilteringMarkupIterator.java:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.next()", - "filename": "FilteringMarkupIterator.java" - }, - "line": 40 - } + "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.next()[]@FilteringMarkupIterator.java:40" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x58", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processRangeHighlighters(int, int, com.intellij.openapi.editor.impl.EditorGutterComponentImpl$RangeHighlighterProcessor)", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 877 - } + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processRangeHighlighters(int, int, com.intellij.openapi.editor.impl.EditorGutterComponentImpl$RangeHighlighterProcessor)[]@EditorGutterComponentImpl.java:877" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x25", "lines": [ - { - "function": { - "name": "it.unimi.dsi.fastutil.ints.Int2ObjectMap com.intellij.openapi.editor.impl.EditorGutterComponentImpl.buildGutterRenderersCache()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 1054 - } + "it.unimi.dsi.fastutil.ints.Int2ObjectMap com.intellij.openapi.editor.impl.EditorGutterComponentImpl.buildGutterRenderersCache()[]@EditorGutterComponentImpl.java:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "it.unimi.dsi.fastutil.objects.ObjectIterable com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processGutterRenderers()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 1199 - } + "it.unimi.dsi.fastutil.objects.ObjectIterable com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processGutterRenderers()[]@EditorGutterComponentImpl.java:1199" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x96", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.calcLineMarkerAreaWidth(boolean)", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 1129 - } + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.calcLineMarkerAreaWidth(boolean)[]@EditorGutterComponentImpl.java:1129" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize(boolean, boolean)", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 954 - } + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize(boolean, boolean)[]@EditorGutterComponentImpl.java:954" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 944 - } + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize()[]@EditorGutterComponentImpl.java:944" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$1.exitDumbMode()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 234 - } + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$1.exitDumbMode()[]@EditorGutterComponentImpl.java:234" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } + "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x26", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 765 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:765" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x47", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 712 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 451 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x45", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 420 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:420" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 1 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x58", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 487 - } + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:487" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy225.handle(com.intellij.execution.services.ServiceEventListener$ServiceEvent)", - "filename": "\u003cunknown\u003e" - } - } + "void jdk.proxy2.$Proxy225.handle(com.intellij.execution.services.ServiceEventListener$ServiceEvent)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl.updateDashboard(boolean)", - "filename": "RunDashboardManagerImpl.java" - }, - "line": 464 - } + "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl.updateDashboard(boolean)[]@RunDashboardManagerImpl.java:464" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl$8.exitDumbMode()", - "filename": "RunDashboardManagerImpl.java" - }, - "line": 229 - } + "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl$8.exitDumbMode()[]@RunDashboardManagerImpl.java:229" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } + "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x26", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 765 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:765" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x47", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 712 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 451 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x45", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 420 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:420" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 1 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 493 - } + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:493" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy139.beforePsiChanged(boolean)", - "filename": "\u003cunknown\u003e" - } - } + "void jdk.proxy2.$Proxy139.beforePsiChanged(boolean)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.PsiManagerImpl.beforeChange(boolean)", - "filename": "PsiManagerImpl.java" - }, - "line": 434 - } + "void com.intellij.psi.impl.PsiManagerImpl.beforeChange(boolean)[]@PsiManagerImpl.java:434" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.PsiManagerImpl.beforePropertyChange(com.intellij.psi.impl.PsiTreeChangeEventImpl)", - "filename": "PsiManagerImpl.java" - }, - "line": 252 - } + "void com.intellij.psi.impl.PsiManagerImpl.beforePropertyChange(com.intellij.psi.impl.PsiTreeChangeEventImpl)[]@PsiManagerImpl.java:252" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$3(boolean)", - "filename": "FileManagerImpl.java" - }, - "line": 305 - } + "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$3(boolean)[]@FileManagerImpl.java:305" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 389 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:389" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 896 - } + "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)[]@ApplicationImpl.java:896" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$4(boolean)", - "filename": "FileManagerImpl.java" - }, - "line": 302 - } + "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$4(boolean)[]@FileManagerImpl.java:302" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.DebugUtil.performPsiModification(java.lang.String, com.intellij.util.ThrowableRunnable)", - "filename": "DebugUtil.java" - }, - "line": 534 - } + "void com.intellij.psi.impl.DebugUtil.performPsiModification(java.lang.String, com.intellij.util.ThrowableRunnable)[]@DebugUtil.java:534" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.processFileTypesChanged(boolean)", - "filename": "FileManagerImpl.java" - }, - "line": 300 - } + "void com.intellij.psi.impl.file.impl.FileManagerImpl.processFileTypesChanged(boolean)[]@FileManagerImpl.java:300" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$1.exitDumbMode()", - "filename": "FileManagerImpl.java" - }, - "line": 81 - } + "void com.intellij.psi.impl.file.impl.FileManagerImpl$1.exitDumbMode()[]@FileManagerImpl.java:81" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } + "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x26", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } + "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 765 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:765" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x47", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 712 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 451 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x97", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 430 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:430" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 1 - } + "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:1" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 493 - } + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:493" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy75.exitDumbMode()", - "filename": "\u003cunknown\u003e" - } - } + "void jdk.proxy2.$Proxy75.exitDumbMode()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12$lambda$11(com.intellij.openapi.project.DumbServiceImpl)", - "filename": "DumbServiceImpl.kt" - }, - "line": 359 - } + "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12$lambda$11(com.intellij.openapi.project.DumbServiceImpl)[]@DumbServiceImpl.kt:359" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12(com.intellij.openapi.project.DumbServiceImpl)", - "filename": "DumbServiceImpl.kt" - }, - "line": 359 - } + "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12(com.intellij.openapi.project.DumbServiceImpl)[]@DumbServiceImpl.kt:359" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.runCatchingIgnorePCE(java.lang.Runnable)", - "filename": "DumbServiceImpl.kt" - }, - "line": 753 - } + "void com.intellij.openapi.project.DumbServiceImpl$Companion.runCatchingIgnorePCE(java.lang.Runnable)[]@DumbServiceImpl.kt:753" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.access$runCatchingIgnorePCE(com.intellij.openapi.project.DumbServiceImpl$Companion, java.lang.Runnable)", - "filename": "DumbServiceImpl.kt" - }, - "line": 740 - } + "void com.intellij.openapi.project.DumbServiceImpl$Companion.access$runCatchingIgnorePCE(com.intellij.openapi.project.DumbServiceImpl$Companion, java.lang.Runnable)[]@DumbServiceImpl.kt:740" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5f", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent()", - "filename": "DumbServiceImpl.kt" - }, - "line": 359 - } + "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent()[]@DumbServiceImpl.kt:359" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6b", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.decrementDumbCounter()", - "filename": "DumbServiceImpl.kt" - }, - "line": 337 - } + "void com.intellij.openapi.project.DumbServiceImpl.decrementDumbCounter()[]@DumbServiceImpl.kt:337" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.access$decrementDumbCounter(com.intellij.openapi.project.DumbServiceImpl)", - "filename": "DumbServiceImpl.kt" - }, - "line": 57 - } + "void com.intellij.openapi.project.DumbServiceImpl.access$decrementDumbCounter(com.intellij.openapi.project.DumbServiceImpl)[]@DumbServiceImpl.kt:57" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend$lambda$0(com.intellij.openapi.project.DumbServiceImpl, com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher)", - "filename": "DumbServiceImpl.kt" - }, - "line": 103 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction$lambda$1$lambda$0(kotlin.jvm.functions.Function0)[]@coroutines.kt:329" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction$lambda$1(kotlin.jvm.functions.Function0)[]@coroutines.kt:329" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt.blockingContextInner(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@coroutines.kt:341" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invokeSuspend(java.lang.Object)[]@coroutines.kt:233" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@coroutines.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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" - } - } + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(java.lang.Object, java.lang.Object)[]@coroutines.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object kotlinx.coroutines.CoroutineScopeKt.coroutineScope(kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@CoroutineScope.kt:261" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt.blockingContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:232" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:328" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3a", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend(java.lang.Object)", - "filename": "DumbServiceImpl.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend(java.lang.Object)[]@DumbServiceImpl.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 33 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x33", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", - "filename": "DispatchedRunnable.kt" - }, - "line": 44 - } + "void com.intellij.openapi.application.impl.DispatchedRunnable.run()[]@DispatchedRunnable.kt:44" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 236 - } + "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)[]@TransactionGuardImpl.java:236" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 25 - } + "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)[]@TransactionGuardImpl.java:25" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", - "filename": "TransactionGuardImpl.java" - }, - "line": 218 - } + "void com.intellij.openapi.application.TransactionGuardImpl$2.run()[]@TransactionGuardImpl.java:218" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)[]@FlushQueue.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x31", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.FlushQueue.flushNow()", - "filename": "FlushQueue.java" - }, - "line": 43 - } + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@FlushQueue.java:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)", - "filename": "JobSupport.kt" - }, - "line": 999 - } + "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)[]@JobSupport.kt:999" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x58", "lines": [ - { - "function": { - "name": "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)", - "filename": "JobSupport.kt" - }, - "line": 292 - } + "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)[]@JobSupport.kt:292" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2d", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)", - "filename": "JobSupport.kt" - }, - "line": 857 - } + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@JobSupport.kt:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)", - "filename": "JobSupport.kt" - }, - "line": 829 - } + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@JobSupport.kt:829" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", - "filename": "AbstractCoroutine.kt" - }, - "line": 97 - } + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@AbstractCoroutine.kt:97" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x76", "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 46 - } + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:46" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x154", "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 104 - } + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.EdtCoroutineDispatcher$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.EdtCoroutineDispatcher$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", - "filename": "TransactionGuardImpl.java" - }, - "line": 221 - } + "void com.intellij.openapi.application.TransactionGuardImpl$2.run()[]@TransactionGuardImpl.java:221" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)[]@FlushQueue.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x31", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.FlushQueue.flushNow()", - "filename": "FlushQueue.java" - }, - "line": 43 - } + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@FlushQueue.java:43" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.dispatch()", - "filename": "InvocationEvent.java" - }, - "line": 318 - } + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 781 - } + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 728 - } + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$4.run()", - "filename": "EventQueue.java" - }, - "line": 722 - } + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 750 - } + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 675 - } + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x18e", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 573 - } + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", - "filename": "WriteIntentReadAction.java" - }, - "line": 23 - } + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1045 - } + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "IdeEventQueue.kt" - }, - "line": 1054 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2a", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 109 - } + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x20", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1ff", "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 395 - } + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x51", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", - "filename": "EventDispatchThread.java" - }, - "line": 207 - } + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", - "filename": "EventDispatchThread.java" - }, - "line": 128 - } + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", - "filename": "EventDispatchThread.java" - }, - "line": 117 - } + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 113 - } + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", - "filename": "EventDispatchThread.java" - }, - "line": 105 - } + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "void java.awt.EventDispatchThread.run()", - "filename": "EventDispatchThread.java" - }, - "line": 92 - } + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x4801eb", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4801eb" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4801eb[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x41771a", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x41771a" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x41771a[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x4197c7", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4197c7" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4197c7[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x419604", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x419604" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x419604[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x418c32", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x418c32" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x418c32[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x4128c4", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4128c4" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4128c4[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x471c2c", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471c2c" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x471c2c[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x471444", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471444" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x471444[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb04536", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb04536" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb04536[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb07b07", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb07b07" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb07b07[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb070b0", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb070b0" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb070b0[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb05324", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb05324" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb05324[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb227bb", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb227bb" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb227bb[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb2261e", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb2261e" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb2261e[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb23b5b", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb23b5b" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb23b5b[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x47f4c0", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x34de0a", "lines": [ - { - "function": { - "name": "htab_map_get_next_key" - } - } + "htab_map_get_next_key[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3100d0", "lines": [ - { - "function": { - "name": "map_get_next_key" - } - } + "map_get_next_key[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x316752", "lines": [ - { - "function": { - "name": "__sys_bpf" - } - } + "__sys_bpf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x316e99", "lines": [ - { - "function": { - "name": "__x64_sys_bpf" - } - } + "__x64_sys_bpf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6e57", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x48414d", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x48414d" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x48414d[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x4d282c", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d282c" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d282c[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x4d2885", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d2885" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d2885[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x4d33ed", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d33ed" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d33ed[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x6241b3", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x6241b3" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x6241b3[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x69a5ec", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a5ec" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a5ec[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x69a33c", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a33c" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a33c[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xbc14ac", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc14ac" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc14ac[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xbc25a4", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc25a4" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc25a4[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0xb1f974", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb1f974" - } - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb1f974[]@:0" ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" }, { "address": "0x47f4c0", "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } + "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xcd2f48", "lines": [ - { - "function": { - "name": "libjvm.so 0xcd2f48" - } - } + "libjvm.so 0xcd2f48[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xc53067", "lines": [ - { - "function": { - "name": "libjvm.so 0xc53067" - } - } + "libjvm.so 0xc53067[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xc562d7", "lines": [ - { - "function": { - "name": "libjvm.so 0xc562d7" - } - } + "libjvm.so 0xc562d7[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x6720b1", "lines": [ - { - "function": { - "name": "libjvm.so 0x6720b1" - } - } + "libjvm.so 0x6720b1[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x676529", "lines": [ - { - "function": { - "name": "libjvm.so 0x676529" - } - } + "libjvm.so 0x676529[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59b62e", "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } + "libjvm.so 0x59b62e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xd5788c", "lines": [ - { - "function": { - "name": "libjvm.so 0xd5788c" - } - } + "libjvm.so 0xd5788c[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd549a8", "lines": [ - { - "function": { - "name": "libjvm.so 0xd549a8" - } - } + "libjvm.so 0xd549a8[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x673fb9", "lines": [ - { - "function": { - "name": "libjvm.so 0x673fb9" - } - } + "libjvm.so 0x673fb9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x675f01", "lines": [ - { - "function": { - "name": "libjvm.so 0x675f01" - } - } + "libjvm.so 0x675f01[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59b62e", "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } + "libjvm.so 0x59b62e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xca29b1", "lines": [ - { - "function": { - "name": "libjvm.so 0xca29b1" - } - } + "libjvm.so 0xca29b1[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xca4241", "lines": [ - { - "function": { - "name": "libjvm.so 0xca4241" - } - } + "libjvm.so 0xca4241[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x5dfc34", "lines": [ - { - "function": { - "name": "libjvm.so 0x5dfc34" - } - } + "libjvm.so 0x5dfc34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x88e8b5", "lines": [ - { - "function": { - "name": "libjvm.so 0x88e8b5" - } - } + "libjvm.so 0x88e8b5[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xb965c3", "lines": [ - { - "function": { - "name": "libjvm.so 0xb965c3" - } - } + "libjvm.so 0xb965c3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59e148", "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } + "libjvm.so 0x59e148[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59e148", "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } + "libjvm.so 0x59e148[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x675d45", "lines": [ - { - "function": { - "name": "libjvm.so 0x675d45" - } - } + "libjvm.so 0x675d45[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59b62e", "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } + "libjvm.so 0x59b62e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xf8e0c6", "lines": [ - { - "function": { - "name": "libjvm.so 0xf8e0c6" - } - } + "libjvm.so 0xf8e0c6[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf8cb60", "lines": [ - { - "function": { - "name": "libjvm.so 0xf8cb60" - } - } + "libjvm.so 0xf8cb60[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x752b0b", "lines": [ - { - "function": { - "name": "libjvm.so 0x752b0b" - } - } + "libjvm.so 0x752b0b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf8ea8a", "lines": [ - { - "function": { - "name": "libjvm.so 0xf8ea8a" - } - } + "libjvm.so 0xf8ea8a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x666ddb", "lines": [ - { - "function": { - "name": "libjvm.so 0x666ddb" - } - } + "libjvm.so 0x666ddb[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x6673d8", "lines": [ - { - "function": { - "name": "libjvm.so 0x6673d8" - } - } + "libjvm.so 0x6673d8[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xc63596", "lines": [ - { - "function": { - "name": "libjvm.so 0xc63596" - } - } + "libjvm.so 0xc63596[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xc6de6d", "lines": [ - { - "function": { - "name": "libjvm.so 0xc6de6d" - } - } + "libjvm.so 0xc6de6d[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd56aca", "lines": [ - { - "function": { - "name": "libjvm.so 0xd56aca" - } - } + "libjvm.so 0xd56aca[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xc647db", "lines": [ - { - "function": { - "name": "libjvm.so 0xc647db" - } - } + "libjvm.so 0xc647db[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x890bbe", "lines": [ - { - "function": { - "name": "libjvm.so 0x890bbe" - } - } + "libjvm.so 0x890bbe[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4b7167", "lines": [ - { - "function": { - "name": "libjvm.so 0x4b7167" - } - } + "libjvm.so 0x4b7167[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4b82d5", "lines": [ - { - "function": { - "name": "libjvm.so 0x4b82d5" - } - } + "libjvm.so 0x4b82d5[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x89f571", "lines": [ - { - "function": { - "name": "libjvm.so 0x89f571" - } - } + "libjvm.so 0x89f571[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd45a4e", "lines": [ - { - "function": { - "name": "libjvm.so 0xd45a4e" - } - } + "libjvm.so 0xd45a4e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd46502", "lines": [ - { - "function": { - "name": "libjvm.so 0xd46502" - } - } + "libjvm.so 0xd46502[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x675d45", "lines": [ - { - "function": { - "name": "libjvm.so 0x675d45" - } - } + "libjvm.so 0x675d45[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59b62e", "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } + "libjvm.so 0x59b62e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xd5c0c2", "lines": [ - { - "function": { - "name": "libjvm.so 0xd5c0c2" - } - } + "libjvm.so 0xd5c0c2[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x5c9e9a", "lines": [ - { - "function": { - "name": "libjvm.so 0x5c9e9a" - } - } + "libjvm.so 0x5c9e9a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x672338", "lines": [ - { - "function": { - "name": "libjvm.so 0x672338" - } - } + "libjvm.so 0x672338[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x676529", "lines": [ - { - "function": { - "name": "libjvm.so 0x676529" - } - } + "libjvm.so 0x676529[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59b62e", "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } + "libjvm.so 0x59b62e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xf991cc", "lines": [ - { - "function": { - "name": "libjvm.so 0xf991cc" - } - } + "libjvm.so 0xf991cc[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf99930", "lines": [ - { - "function": { - "name": "libjvm.so 0xf99930" - } - } + "libjvm.so 0xf99930[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf99ea6", "lines": [ - { - "function": { - "name": "libjvm.so 0xf99ea6" - } - } + "libjvm.so 0xf99ea6[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf9a2fb", "lines": [ - { - "function": { - "name": "libjvm.so 0xf9a2fb" - } - } + "libjvm.so 0xf9a2fb[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x892f2e", "lines": [ - { - "function": { - "name": "libjvm.so 0x892f2e" - } - } + "libjvm.so 0x892f2e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d0f", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d0f" - } - } + "libjvm.so 0x765d0f[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59e148", "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } + "libjvm.so 0x59e148[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59e148", "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } + "libjvm.so 0x59e148[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59e148", "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } + "libjvm.so 0x59e148[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59e148", "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } + "libjvm.so 0x59e148[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x765d47", "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } + "libjvm.so 0x765d47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd34374", "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } + "libjvm.so 0xd34374[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd347b4", "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } + "libjvm.so 0xd347b4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd36f34", "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } + "libjvm.so 0xd36f34[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59c77a", "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } + "libjvm.so 0x59c77a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x675d45", "lines": [ - { - "function": { - "name": "libjvm.so 0x675d45" - } - } + "libjvm.so 0x675d45[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x59b62e", "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } + "libjvm.so 0x59b62e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0xad7b4", "lines": [ - { - "function": { - "name": "libc.so.6 0xad7b4" - } - } + "libc.so.6 0xad7b4[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xcfc1af", "lines": [ - { - "function": { - "name": "libjvm.so 0xcfc1af" - } - } + "libjvm.so 0xcfc1af[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x432d9e", "lines": [ - { - "function": { - "name": "libjvm.so 0x432d9e" - } - } + "libjvm.so 0x432d9e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xcf350a", "lines": [ - { - "function": { - "name": "libjvm.so 0xcf350a" - } - } + "libjvm.so 0xcf350a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x63fbf0", "lines": [ - { - "function": { - "name": "libjvm.so 0x63fbf0" - } - } + "libjvm.so 0x63fbf0[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x6856e1", "lines": [ - { - "function": { - "name": "libjvm.so 0x6856e1" - } - } + "libjvm.so 0x6856e1[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xcc7df4", "lines": [ - { - "function": { - "name": "libjvm.so 0xcc7df4" - } - } + "libjvm.so 0xcc7df4[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xcc84e2", "lines": [ - { - "function": { - "name": "libjvm.so 0xcc84e2" - } - } + "libjvm.so 0xcc84e2[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x5d2745", "lines": [ - { - "function": { - "name": "libjvm.so 0x5d2745" - } - } + "libjvm.so 0x5d2745[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4eb59b", "lines": [ - { - "function": { - "name": "libjvm.so 0x4eb59b" - } - } + "libjvm.so 0x4eb59b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecd89", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecd89" - } - } + "libjvm.so 0x4ecd89[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecfe7", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } + "libjvm.so 0x4ecfe7[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4edd4b", "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } + "libjvm.so 0x4edd4b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x6c4a6e", "lines": [ - { - "function": { - "name": "libjvm.so 0x6c4a6e" - } - } + "libjvm.so 0x6c4a6e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x6c5c47", "lines": [ - { - "function": { - "name": "libjvm.so 0x6c5c47" - } - } + "libjvm.so 0x6c5c47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x50e19d", "lines": [ - { - "function": { - "name": "libjvm.so 0x50e19d" - } - } + "libjvm.so 0x50e19d[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x51c370", "lines": [ - { - "function": { - "name": "libjvm.so 0x51c370" - } - } + "libjvm.so 0x51c370[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x528811", "lines": [ - { - "function": { - "name": "libjvm.so 0x528811" - } - } + "libjvm.so 0x528811[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x51c840", "lines": [ - { - "function": { - "name": "libjvm.so 0x51c840" - } - } + "libjvm.so 0x51c840[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x51c53e", "lines": [ - { - "function": { - "name": "libjvm.so 0x51c53e" - } - } + "libjvm.so 0x51c53e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x51c70a", "lines": [ - { - "function": { - "name": "libjvm.so 0x51c70a" - } - } + "libjvm.so 0x51c70a[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ec547", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec547" - } - } + "libjvm.so 0x4ec547[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ec9e8", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec9e8" - } - } + "libjvm.so 0x4ec9e8[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecc19", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecc19" - } - } + "libjvm.so 0x4ecc19[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecfe7", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } + "libjvm.so 0x4ecfe7[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4edd4b", "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } + "libjvm.so 0x4edd4b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x559925", "lines": [ - { - "function": { - "name": "libjvm.so 0x559925" - } - } + "libjvm.so 0x559925[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x5625ba", "lines": [ - { - "function": { - "name": "libjvm.so 0x5625ba" - } - } + "libjvm.so 0x5625ba[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x562e27", "lines": [ - { - "function": { - "name": "libjvm.so 0x562e27" - } - } + "libjvm.so 0x562e27[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x564b15", "lines": [ - { - "function": { - "name": "libjvm.so 0x564b15" - } - } + "libjvm.so 0x564b15[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ebfec", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ebfec" - } - } + "libjvm.so 0x4ebfec[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ec90f", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec90f" - } - } + "libjvm.so 0x4ec90f[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecc19", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecc19" - } - } + "libjvm.so 0x4ecc19[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecfe7", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } + "libjvm.so 0x4ecfe7[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4edd4b", "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } + "libjvm.so 0x4edd4b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x55be84", "lines": [ - { - "function": { - "name": "libjvm.so 0x55be84" - } - } + "libjvm.so 0x55be84[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x564a47", "lines": [ - { - "function": { - "name": "libjvm.so 0x564a47" - } - } + "libjvm.so 0x564a47[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ebfec", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ebfec" - } - } + "libjvm.so 0x4ebfec[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ec90f", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec90f" - } - } + "libjvm.so 0x4ec90f[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecc19", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecc19" - } - } + "libjvm.so 0x4ecc19[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4ecfe7", "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } + "libjvm.so 0x4ecfe7[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x4edd4b", "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } + "libjvm.so 0x4edd4b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67c233", "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } + "libjvm.so 0x67c233[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x67f1a3", "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } + "libjvm.so 0x67f1a3[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x67fc1b", "lines": [ - { - "function": { - "name": "libjvm.so 0x67fc1b" - } - } + "libjvm.so 0x67fc1b[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9f705e", "lines": [ - { - "function": { - "name": "libjvm.so 0x9f705e" - } - } + "libjvm.so 0x9f705e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()", - "filename": "AccessController.java" - } - } + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@AccessController.java:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x0", "lines": [ - { - "function": { - "name": "java.security.AccessControlContext java.security.AccessController.getContext()", - "filename": "AccessController.java" - }, - "line": 1006 - } + "java.security.AccessControlContext java.security.AccessController.getContext()[]@AccessController.java:1006" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)", - "filename": "AWTEvent.java" - }, - "line": 120 - } + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@AWTEvent.java:120" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)", - "filename": "InvocationEvent.java" - }, - "line": 291 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)", - "filename": "InvocationEvent.java" - }, - "line": 177 - } + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)[]@InvocationEvent.java:177" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x10", "lines": [ - { - "function": { - "name": "void sun.awt.GlobalCursorManager.updateCursorLater(java.awt.Component)", - "filename": "GlobalCursorManager.java" - }, - "line": 120 - } + "void sun.awt.GlobalCursorManager.updateCursorLater(java.awt.Component)[]@GlobalCursorManager.java:120" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XGlobalCursorManager.nativeUpdateCursor(java.awt.Component)", - "filename": "XGlobalCursorManager.java" - }, - "line": 60 - } + "void sun.awt.X11.XGlobalCursorManager.nativeUpdateCursor(java.awt.Component)[]@XGlobalCursorManager.java:60" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xbc", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XWindow.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XWindow.java" - }, - "line": 1104 - } + "void sun.awt.X11.XWindow.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XWindow.java:1104" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XComponentPeer.java" - }, - "line": 74 - } + "void sun.awt.X11.XComponentPeer.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XComponentPeer.java:74" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x88", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XWindowPeer.java" - }, - "line": 2364 - } + "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XWindowPeer.java:2364" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf6", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", - "filename": "XBaseWindow.java" - }, - "line": 1220 - } + "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)[]@XBaseWindow.java:1220" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x82", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XWindowPeer.java" - }, - "line": 2360 - } + "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XWindowPeer.java:2360" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf6", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", - "filename": "XBaseWindow.java" - }, - "line": 1220 - } + "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)[]@XBaseWindow.java:1220" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x54", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)", - "filename": "XBaseWindow.java" - }, - "line": 1178 - } + "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)[]@XBaseWindow.java:1178" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)", - "filename": "XToolkit.java" - }, - "line": 917 - } + "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)[]@XToolkit.java:917" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x218", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XToolkit.run(boolean)", - "filename": "XToolkit.java" - }, - "line": 1064 - } + "void sun.awt.X11.XToolkit.run(boolean)[]@XToolkit.java:1064" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void sun.awt.X11.XToolkit.run()", - "filename": "XToolkit.java" - }, - "line": 946 - } + "void sun.awt.X11.XToolkit.run()[]@XToolkit.java:946" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } + "void java.lang.Thread.run()[]@Thread.java:1583" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x73", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.util.text.StringUtilRt.equal(java.lang.CharSequence, java.lang.CharSequence, boolean)", - "filename": "StringUtilRt.java" - }, - "line": 35 - } + "boolean com.intellij.openapi.util.text.StringUtilRt.equal(java.lang.CharSequence, java.lang.CharSequence, boolean)[]@StringUtilRt.java:35" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.CharSequence, java.lang.CharSequence)", - "filename": "HashingStrategy.java" - }, - "line": 52 - } + "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.CharSequence, java.lang.CharSequence)[]@HashingStrategy.java:52" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.Object, java.lang.Object)", - "filename": "HashingStrategy.java" - }, - "line": 36 - } + "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.Object, java.lang.Object)[]@HashingStrategy.java:36" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object, com.intellij.util.containers.HashingStrategy)", - "filename": "ConcurrentHashMap.java" - }, - "line": 6253 - } + "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object, com.intellij.util.containers.HashingStrategy)[]@ConcurrentHashMap.java:6253" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe", "lines": [ - { - "function": { - "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object)", - "filename": "ConcurrentHashMap.java" - }, - "line": 6249 - } + "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object)[]@ConcurrentHashMap.java:6249" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x48", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.concurrency.ConcurrentHashMap.get(java.lang.Object)", - "filename": "ConcurrentHashMap.java" - }, - "line": 917 - } + "java.lang.Object com.intellij.concurrency.ConcurrentHashMap.get(java.lang.Object)[]@ConcurrentHashMap.java:917" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x37", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeAssocTable.findAssociatedFileType(java.lang.CharSequence)", - "filename": "FileTypeAssocTable.java" - }, - "line": 156 - } + "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeAssocTable.findAssociatedFileType(java.lang.CharSequence)[]@FileTypeAssocTable.java:156" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$FileTypeWithDescriptor com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.lambda$getFileTypeByFileName$12(java.lang.CharSequence)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 720 - } + "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$FileTypeWithDescriptor com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.lambda$getFileTypeByFileName$12(java.lang.CharSequence)[]@FileTypeManagerImpl.java:720" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.openapi.util.ThrowableComputable)", - "filename": "ConcurrencyUtil.java" - }, - "line": 246 - } + "java.lang.Object com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.openapi.util.ThrowableComputable)[]@ConcurrencyUtil.java:246" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.withReadLock(com.intellij.openapi.util.ThrowableComputable)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 1816 - } + "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.withReadLock(com.intellij.openapi.util.ThrowableComputable)[]@FileTypeManagerImpl.java:1816" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2d", "lines": [ - { - "function": { - "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.CharSequence)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 720 - } + "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.CharSequence)[]@FileTypeManagerImpl.java:720" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.String)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 711 - } + "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.String)[]@FileTypeManagerImpl.java:711" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3d", "lines": [ - { - "function": { - "name": "boolean com.goide.vgo.project.VgoLibraryRootsProvider$VgoDependenciesLibrary.shouldExclude(boolean, java.lang.String, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier)", - "filename": "VgoLibraryRootsProvider.java" - }, - "line": 114 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "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)", - "filename": "\u003cunknown\u003e" - } - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1d", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition.lambda$transformToCondition$3(java.util.Collection, com.intellij.openapi.vfs.VirtualFile)", - "filename": "SyntheticLibrary.java" - }, - "line": 236 - } + "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition.lambda$transformToCondition$3(java.util.Collection, com.intellij.openapi.vfs.VirtualFile)[]@SyntheticLibrary.java:236" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition$$Lambda+\u003chidden\u003e.value(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "boolean com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor.registerFileSets$lambda$2(com.intellij.openapi.util.Condition, com.intellij.openapi.vfs.VirtualFile)", - "filename": "VgoDependencyWorkspaceFileIndexContributor.kt" - }, - "line": 34 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "boolean com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.isExcluded(com.intellij.openapi.vfs.VirtualFile)", - "filename": "workspaceFileSets.kt" - }, - "line": 328 - } + "boolean com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.isExcluded(com.intellij.openapi.vfs.VirtualFile)[]@workspaceFileSets.kt:328" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "int com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", - "filename": "workspaceFileSets.kt" - }, - "line": 338 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x39", "lines": [ - { - "function": { - "name": "int com.intellij.workspaceModel.core.fileIndex.impl.MultipleStoredWorkspaceFileSets.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", - "filename": "workspaceFileSets.kt" - }, - "line": 212 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf4", "lines": [ - { - "function": { - "name": "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)", - "filename": "WorkspaceFileIndexDataImpl.kt" - }, - "line": 113 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3e", "lines": [ - { - "function": { - "name": "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)", - "filename": "WorkspaceFileIndexImpl.kt" - }, - "line": 267 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.roots.impl.ProjectFileIndexImpl.isExcluded(com.intellij.openapi.vfs.VirtualFile)", - "filename": "ProjectFileIndexImpl.java" - }, - "line": 67 - } + "boolean com.intellij.openapi.roots.impl.ProjectFileIndexImpl.isExcluded(com.intellij.openapi.vfs.VirtualFile)[]@ProjectFileIndexImpl.java:67" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile$lambda$2(com.intellij.openapi.roots.ProjectFileIndex, com.intellij.openapi.vfs.VirtualFile)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 98 - } + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile$lambda$2(com.intellij.openapi.roots.ProjectFileIndex, com.intellij.openapi.vfs.VirtualFile)[]@IndexableFilesIterationMethods.kt:98" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "actions.kt" - }, - "line": 28 - } + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)[]@actions.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$4(com.intellij.openapi.util.Computable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 260 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$4(com.intellij.openapi.util.Computable)[]@AnyThreadWriteThreadingSupport.kt:260" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe9", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 314 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:314" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 260 - } + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)[]@AnyThreadWriteThreadingSupport.kt:260" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)", - "filename": "ApplicationImpl.java" - }, - "line": 858 - } + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)[]@ApplicationImpl.java:858" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)", - "filename": "actions.kt" - }, - "line": 28 - } + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)[]@actions.kt:28" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x75", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 98 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots$lambda$0(com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean, com.intellij.openapi.vfs.VirtualFile)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 32 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", - "filename": "\u003cunknown\u003e" - } - } + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter.lambda$and$0(com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.vfs.VirtualFile)", - "filename": "VirtualFileFilter.java" - }, - "line": 35 - } + "boolean com.intellij.openapi.vfs.VirtualFileFilter.lambda$and$0(com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.vfs.VirtualFile)[]@VirtualFileFilter.java:35" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", - "filename": "\u003cunknown\u003e" - } - } + "boolean com.intellij.openapi.vfs.VirtualFileFilter$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore$1.visitFileEx(com.intellij.openapi.vfs.VirtualFile)", - "filename": "VfsUtilCore.java" - }, - "line": 287 - } + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore$1.visitFileEx(com.intellij.openapi.vfs.VirtualFile)[]@VfsUtilCore.java:287" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 303 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13c", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13c", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13c", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13c", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13c", "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x27", "lines": [ - { - "function": { - "name": "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[])", - "filename": "VfsUtilCore.java" - }, - "line": 284 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.vfs.VfsUtilCore.iterateChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.roots.ContentIterator)", - "filename": "VfsUtilCore.java" - }, - "line": 277 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9d", "lines": [ - { - "function": { - "name": "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)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 34 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3c", "lines": [ - { - "function": { - "name": "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)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 71 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x23", "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.SourceRootHolderIteratorBase.iterateFiles(com.intellij.openapi.project.Project, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter)", - "filename": "SourceRootHolderIteratorBase.java" - }, - "line": 45 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4d", "lines": [ - { - "function": { - "name": "void com.intellij.util.indexing.FileBasedIndexEx.iterateIndexableFiles(com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.project.Project, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "FileBasedIndexEx.java" - }, - "line": 530 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1f", "lines": [ - { - "function": { - "name": "com.goide.stubs.index.GoIdFilter com.goide.stubs.index.GoIdFilter.lambda$createIdFilter$3(com.intellij.openapi.project.Project, com.intellij.openapi.util.Condition)", - "filename": "GoIdFilter.java" - }, - "line": 92 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.goide.stubs.index.GoIdFilter$$Lambda+\u003chidden\u003e.call()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.goide.stubs.index.GoIdFilter$$Lambda+\u003chidden\u003e.call()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x27", "lines": [ - { - "function": { - "name": "void java.util.concurrent.FutureTask.run()", - "filename": "FutureTask.java" - }, - "line": 317 - } + "void java.util.concurrent.FutureTask.run()[]@FutureTask.java:317" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x7", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", - "filename": "propagation.kt" - }, - "line": 101 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", - "filename": "propagation.kt" - }, - "line": 101 - } + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.ContextRunnable.run()", - "filename": "ContextRunnable.java" - }, - "line": 27 - } + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 249 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@BoundedTaskExecutor.java:249" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 30 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@BoundedTaskExecutor.java:30" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 227 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@BoundedTaskExecutor.java:227" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 215 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@BoundedTaskExecutor.java:215" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", - "filename": "ThreadPoolExecutor.java" - }, - "line": 1144 - } + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@ThreadPoolExecutor.java:1144" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", - "filename": "ThreadPoolExecutor.java" - }, - "line": 642 - } + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@ThreadPoolExecutor.java:642" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 735 - } + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:735" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:732" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@Executors.java:732" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } + "void java.lang.Thread.run()[]@Thread.java:1583" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x0", "lines": [ - { - "function": { - "name": "boolean kotlin.text.StringsKt__StringsKt.contains(java.lang.CharSequence, char, boolean)", - "filename": "Strings.kt" - } - } + "boolean kotlin.text.StringsKt__StringsKt.contains(java.lang.CharSequence, char, boolean)[]@Strings.kt:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xb", "lines": [ - { - "function": { - "name": "boolean kotlin.text.StringsKt__StringsKt.contains$default(java.lang.CharSequence, char, boolean, int, java.lang.Object)", - "filename": "Strings.kt" - }, - "line": 1170 - } + "boolean kotlin.text.StringsKt__StringsKt.contains$default(java.lang.CharSequence, char, boolean, int, java.lang.Object)[]@Strings.kt:1170" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x35", "lines": [ - { - "function": { - "name": "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)", - "filename": "GitHubTableMarkerProvider.kt" - }, - "line": 20 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x60", "lines": [ - { - "function": { - "name": "java.util.List org.intellij.markdown.parser.MarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", - "filename": "MarkerProcessor.kt" - }, - "line": 47 - } + "java.util.List org.intellij.markdown.parser.MarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)[]@MarkerProcessor.kt:47" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1c", "lines": [ - { - "function": { - "name": "java.util.List org.intellij.markdown.flavours.commonmark.CommonMarkMarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", - "filename": "CommonMarkMarkerProcessor.kt" - }, - "line": 79 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5a", "lines": [ - { - "function": { - "name": "org.intellij.markdown.parser.LookaheadText$Position org.intellij.markdown.parser.MarkerProcessor.processPosition(org.intellij.markdown.parser.LookaheadText$Position)", - "filename": "MarkerProcessor.kt" - }, - "line": 75 - } + "org.intellij.markdown.parser.LookaheadText$Position org.intellij.markdown.parser.MarkerProcessor.processPosition(org.intellij.markdown.parser.LookaheadText$Position)[]@MarkerProcessor.kt:75" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x52", "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.doParse(org.intellij.markdown.IElementType, java.lang.String, boolean)", - "filename": "MarkdownParser.kt" - }, - "line": 67 - } + "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.doParse(org.intellij.markdown.IElementType, java.lang.String, boolean)[]@MarkdownParser.kt:67" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.parse(org.intellij.markdown.IElementType, java.lang.String, boolean)", - "filename": "MarkdownParser.kt" - }, - "line": 33 - } + "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.parse(org.intellij.markdown.IElementType, java.lang.String, boolean)[]@MarkdownParser.kt:33" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x49", "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.performParsing(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - }, - "line": 42 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1b", "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parse(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - }, - "line": 34 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12", "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager$Companion.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - }, - "line": 71 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - } - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4a", "lines": [ - { - "function": { - "name": "void org.intellij.plugins.markdown.lang.lexer.MarkdownToplevelLexer.start(java.lang.CharSequence, int, int, int)", - "filename": "MarkdownToplevelLexer.java" - }, - "line": 52 - } + "void org.intellij.plugins.markdown.lang.lexer.MarkdownToplevelLexer.start(java.lang.CharSequence, int, int, int)[]@MarkdownToplevelLexer.java:52" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.lexer.DelegateLexer.start(java.lang.CharSequence, int, int, int)", - "filename": "DelegateLexer.java" - }, - "line": 25 - } + "void com.intellij.lexer.DelegateLexer.start(java.lang.CharSequence, int, int, int)[]@DelegateLexer.java:25" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2f", "lines": [ - { - "function": { - "name": "void com.intellij.lexer.LayeredLexer.start(java.lang.CharSequence, int, int, int)", - "filename": "LayeredLexer.java" - }, - "line": 75 - } + "void com.intellij.lexer.LayeredLexer.start(java.lang.CharSequence, int, int, int)[]@LayeredLexer.java:75" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.start(java.lang.CharSequence, int, int, int)", - "filename": "ValidatingLexerWrapper.java" - }, - "line": 38 - } + "void com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.start(java.lang.CharSequence, int, int, int)[]@ValidatingLexerWrapper.java:38" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5f", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(java.lang.CharSequence)", - "filename": "LexerEditorHighlighter.java" - }, - "line": 432 - } + "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(java.lang.CharSequence)[]@LexerEditorHighlighter.java:432" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(java.lang.CharSequence)", - "filename": "LexerEditorHighlighter.java" - }, - "line": 413 - } + "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(java.lang.CharSequence)[]@LexerEditorHighlighter.java:413" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x42", "lines": [ - { - "function": { - "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.createHighlighter(boolean)", - "filename": "EditorHighlighterUpdater.kt" - }, - "line": 154 - } + "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.createHighlighter(boolean)[]@EditorHighlighterUpdater.kt:154" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.updateHighlighters$lambda$0(com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater)", - "filename": "EditorHighlighterUpdater.kt" - }, - "line": 139 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater$$Lambda+\u003chidden\u003e.call()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater$$Lambda+\u003chidden\u003e.call()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 857 - } + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@NonBlockingReadActionImpl.java:857" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 889 - } + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@NonBlockingReadActionImpl.java:889" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x38", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 618 - } + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@NonBlockingReadActionImpl.java:618" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 581 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x71", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 351 - } + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 971 - } + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 95 - } + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@ProgressIndicatorUtils.java:95" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3", "lines": [ - { - "function": { - "name": "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 140 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)", - "filename": "ProgressManager.java" - }, - "line": 98 - } + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@ProgressManager.java:98" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$1(java.lang.Runnable, io.opentelemetry.api.trace.Span)", - "filename": "CoreProgressManager.java" - }, - "line": 223 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$1(java.lang.Runnable, io.opentelemetry.api.trace.Span)[]@CoreProgressManager.java:223" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x35", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(io.opentelemetry.api.trace.Span, kotlin.jvm.functions.Function1)", - "filename": "trace.kt" - }, - "line": 45 - } + "java.lang.Object com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(io.opentelemetry.api.trace.Span, kotlin.jvm.functions.Function1)[]@trace.kt:45" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x44", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)", - "filename": "CoreProgressManager.java" - }, - "line": 222 - } + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@CoreProgressManager.java:222" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(java.lang.Runnable)", - "filename": "CoreProgressManager.java" - }, - "line": 674 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(java.lang.Runnable)[]@CoreProgressManager.java:674" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd8", "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreProgressManager.java" - }, - "line": 749 - } + "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": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "CoreProgressManager.java" - }, - "line": 705 - } + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@CoreProgressManager.java:705" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "CoreProgressManager.java" - }, - "line": 673 - } + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@CoreProgressManager.java:673" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2c", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressManagerImpl.java" - }, - "line": 79 - } + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressManagerImpl.java:79" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "CoreProgressManager.java" - }, - "line": 203 - } + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@CoreProgressManager.java:203" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x19", "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressManager.java" - }, - "line": 98 - } + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressManager.java:98" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x3f", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 137 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressIndicatorUtils.java:137" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x29", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 95 - } + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressIndicatorUtils.java:95" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x92", "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 581 - } + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@NonBlockingReadActionImpl.java:581" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x28", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 480 - } + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@NonBlockingReadActionImpl.java:480" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 495 - } + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@NonBlockingReadActionImpl.java:495" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4", "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xa", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 249 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@BoundedTaskExecutor.java:249" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 30 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@BoundedTaskExecutor.java:30" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 227 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@BoundedTaskExecutor.java:227" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e", "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 215 - } + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@BoundedTaskExecutor.java:215" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5c", "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", - "filename": "ThreadPoolExecutor.java" - }, - "line": 1144 - } + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@ThreadPoolExecutor.java:1144" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", - "filename": "ThreadPoolExecutor.java" - }, - "line": 642 - } + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@ThreadPoolExecutor.java:642" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x17", "lines": [ - { - "function": { - "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 735 - } + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:735" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1", "lines": [ - { - "function": { - "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:732" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@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 - } + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xd", "lines": [ - { - "function": { - "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "AccessController.java" - }, - "line": 400 - } + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xf", "lines": [ - { - "function": { - "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@Executors.java:732" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x5", "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x13", "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } + "void java.lang.Thread.run()[]@Thread.java:1583" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2e6a730ee9809163", "lines": [ - { - "function": { - "name": "StubRoutines (initial stubs) [call_stub_return_address]" - } - } + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x914b94", "lines": [ - { - "function": { - "name": "libjvm.so 0x914b94" - } - } + "libjvm.so 0x914b94[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9164da", "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } + "libjvm.so 0x9164da[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9e65b9", "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } + "libjvm.so 0x9e65b9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x92b50e", "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } + "libjvm.so 0x92b50e[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xf7b717", "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } + "libjvm.so 0xf7b717[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0xd075c9", "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } + "libjvm.so 0xd075c9[]@:0" ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9ef74", "lines": [ - { - "function": { - "name": "nvkm_timer_read" - } - } + "nvkm_timer_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xac40b", "lines": [ - { - "function": { - "name": "nvkm_udevice_mthd" - } - } + "nvkm_udevice_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xae89", "lines": [ - { - "function": { - "name": "nvkm_object_mthd" - } - } + "nvkm_object_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x950c", "lines": [ - { - "function": { - "name": "nvkm_ioctl_mthd" - } - } + "nvkm_ioctl_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9b94", "lines": [ - { - "function": { - "name": "nvkm_ioctl" - } - } + "nvkm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11dcbd", "lines": [ - { - "function": { - "name": "nvkm_client_ioctl" - } - } + "nvkm_client_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x468", "lines": [ - { - "function": { - "name": "nvif_object_mthd" - } - } + "nvif_object_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a5", "lines": [ - { - "function": { - "name": "nvif_device_time" - } - } + "nvif_device_time[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x47d4", "lines": [ - { - "function": { - "name": "nvif_timer_wait_test" - } - } + "nvif_timer_wait_test[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x160554", "lines": [ - { - "function": { - "name": "base507c_ntfy_wait_begun" - } - } + "base507c_ntfy_wait_begun[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15df99", "lines": [ - { - "function": { - "name": "nv50_wndw_wait_armed" - } - } + "nv50_wndw_wait_armed[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14f7b9", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_tail" - } - } + "nv50_disp_atomic_commit_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14feb1", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_work" - } - } + "nv50_disp_atomic_commit_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 100000000 - ] + "values": "100000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x160567", "lines": [ - { - "function": { - "name": "base507c_ntfy_wait_begun" - } - } + "base507c_ntfy_wait_begun[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15df99", "lines": [ - { - "function": { - "name": "nv50_wndw_wait_armed" - } - } + "nv50_wndw_wait_armed[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14f7b9", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_tail" - } - } + "nv50_disp_atomic_commit_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14feb1", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_work" - } - } + "nv50_disp_atomic_commit_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 100000000 - ] + "values": "100000000" }, { "locations": [ { "address": "0x12495b0", "lines": [ - { - "function": { - "name": "_raw_spin_unlock_irqrestore" - } - } + "_raw_spin_unlock_irqrestore[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2066db", "lines": [ - { - "function": { - "name": "hrtimer_start_range_ns" - } - } + "hrtimer_start_range_ns[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124808f", "lines": [ - { - "function": { - "name": "schedule_hrtimeout_range_clock" - } - } + "schedule_hrtimeout_range_clock[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1248152", "lines": [ - { - "function": { - "name": "schedule_hrtimeout_range" - } - } + "schedule_hrtimeout_range[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1247d14", "lines": [ - { - "function": { - "name": "usleep_range_state" - } - } + "usleep_range_state[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x16054b", "lines": [ - { - "function": { - "name": "base507c_ntfy_wait_begun" - } - } + "base507c_ntfy_wait_begun[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x15df99", "lines": [ - { - "function": { - "name": "nv50_wndw_wait_armed" - } - } + "nv50_wndw_wait_armed[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14f7b9", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_tail" - } - } + "nv50_disp_atomic_commit_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x14feb1", "lines": [ - { - "function": { - "name": "nv50_disp_atomic_commit_work" - } - } + "nv50_disp_atomic_commit_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12bee7", "lines": [ - { - "function": { - "name": "process_one_work" - } - } + "process_one_work[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d1c5", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x150f38", "lines": [ - { - "function": { - "name": "finish_task_switch.isra.0" - } - } + "finish_task_switch.isra.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1240963", "lines": [ - { - "function": { - "name": "__schedule" - } - } + "__schedule[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1240dd2", "lines": [ - { - "function": { - "name": "schedule" - } - } + "schedule[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x12d095", "lines": [ - { - "function": { - "name": "worker_thread" - } - } + "worker_thread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x137d71", "lines": [ - { - "function": { - "name": "kthread" - } - } + "kthread[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x68aa6", "lines": [ - { - "function": { - "name": "ret_from_fork" - } - } + "ret_from_fork[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x547a", "lines": [ - { - "function": { - "name": "ret_from_fork_asm" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x11e6fe", "lines": [ - { - "function": { - "name": "set_placement_list" - } - } + "set_placement_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1202b1", "lines": [ - { - "function": { - "name": "nouveau_bo_placement_set" - } - } + "nouveau_bo_placement_set[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228ac", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } + "libc.so.6 0x124dec[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } + "libdrm.so.2.4.0 0x7aff[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } + "libdrm.so.2.4.0 0xb02f[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } + "nouveau_dri.so 0xa7103a[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } + "nouveau_dri.so 0x311bf7[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x1d1d5", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x1d1d5" - } - } + "libglamoregl.so 0x1d1d5[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14c9cf", "lines": [ - { - "function": { - "name": "Xorg 0x14c9cf" - } - } + "Xorg 0x14c9cf[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x275a2", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x275a2" - } - } + "libglamoregl.so 0x275a2[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x2746c", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x2746c" - } - } + "libglamoregl.so 0x2746c[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x140e6f", "lines": [ - { - "function": { - "name": "Xorg 0x140e6f" - } - } + "Xorg 0x140e6f[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } + "Xorg 0x62ab3[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } + "Xorg 0x66e51[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x87cc4b", "lines": [ - { - "function": { - "name": "ioread32" - } - } + "ioread32[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x168f00", "lines": [ - { - "function": { - "name": "nv84_fence_read" - } - } + "nv84_fence_read[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x166bdd", "lines": [ - { - "function": { - "name": "nouveau_fence_is_signaled" - } - } + "nouveau_fence_is_signaled[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xc1ff03", "lines": [ - { - "function": { - "name": "dma_resv_add_fence" - } - } + "dma_resv_add_fence[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1214d5", "lines": [ - { - "function": { - "name": "nouveau_bo_fence" - } - } + "nouveau_bo_fence[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x123249", "lines": [ - { - "function": { - "name": "validate_fini_no_ticket" - } - } + "validate_fini_no_ticket[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124347", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } + "libc.so.6 0x124dec[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } + "libdrm.so.2.4.0 0x7aff[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } + "libdrm.so.2.4.0 0xb02f[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } + "nouveau_dri.so 0xa7103a[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } + "nouveau_dri.so 0x311bf7[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x100ef", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x100ef" - } - } + "libglamoregl.so 0x100ef[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14bb06", "lines": [ - { - "function": { - "name": "Xorg 0x14bb06" - } - } + "Xorg 0x14bb06[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x13f976", "lines": [ - { - "function": { - "name": "Xorg 0x13f976" - } - } + "Xorg 0x13f976[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } + "Xorg 0x62ab3[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } + "Xorg 0x66e51[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1249eb4", "lines": [ - { - "function": { - "name": "_raw_spin_unlock_irq" - } - } + "_raw_spin_unlock_irq[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x218ff0", "lines": [ - { - "function": { - "name": "do_setitimer" - } - } + "do_setitimer[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2197aa", "lines": [ - { - "function": { - "name": "__x64_sys_setitimer" - } - } + "__x64_sys_setitimer[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6648", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xe29da", "lines": [ - { - "function": { - "name": "libc.so.6 0xe29da" - } - } + "libc.so.6 0xe29da[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x1e4a68", "lines": [ - { - "function": { - "name": "Xorg 0x1e4a68" - } - } + "Xorg 0x1e4a68[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x1db31e", "lines": [ - { - "function": { - "name": "Xorg 0x1db31e" - } - } + "Xorg 0x1db31e[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x627e9", "lines": [ - { - "function": { - "name": "Xorg 0x627e9" - } - } + "Xorg 0x627e9[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } + "Xorg 0x66e51[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x28414", "lines": [ - { - "function": { - "name": "libc.so.6 0x28414" - } - } + "libc.so.6 0x28414[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x274ff", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x274ff" - } - } + "libglamoregl.so 0x274ff[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x2746c", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x2746c" - } - } + "libglamoregl.so 0x2746c[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x140e6f", "lines": [ - { - "function": { - "name": "Xorg 0x140e6f" - } - } + "Xorg 0x140e6f[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } + "Xorg 0x62ab3[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } + "Xorg 0x66e51[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1228fa4", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } + "libc.so.6 0x124dec[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } + "libdrm.so.2.4.0 0x7aff[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } + "libdrm.so.2.4.0 0xb02f[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } + "nouveau_dri.so 0xa7103a[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } + "nouveau_dri.so 0x311bf7[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x17ba6", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x17ba6" - } - } + "libglamoregl.so 0x17ba6[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x18bf8", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x18bf8" - } - } + "libglamoregl.so 0x18bf8[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14b73c", "lines": [ - { - "function": { - "name": "Xorg 0x14b73c" - } - } + "Xorg 0x14b73c[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x141792", "lines": [ - { - "function": { - "name": "Xorg 0x141792" - } - } + "Xorg 0x141792[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } + "Xorg 0x62ab3[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } + "Xorg 0x66e51[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1208bf", "lines": [ - { - "function": { - "name": "nouveau_bo_sync_for_device" - } - } + "nouveau_bo_sync_for_device[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x120f7f", "lines": [ - { - "function": { - "name": "nouveau_bo_validate" - } - } + "nouveau_bo_validate[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228bb", "lines": [ - { - "function": { - "name": "validate_list" - } - } + "validate_list[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124120", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_pushbuf" - } - } + "nouveau_gem_ioctl_pushbuf[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } + "libc.so.6 0x124dec[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } + "libdrm.so.2.4.0 0x7aff[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } + "libdrm.so.2.4.0 0xb02f[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x51ee", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa7103a", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } + "nouveau_dri.so 0xa7103a[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x311bf7", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } + "nouveau_dri.so 0x311bf7[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x100ef", "lines": [ - { - "function": { - "name": "libglamoregl.so 0x100ef" - } - } + "libglamoregl.so 0x100ef[]@:0" ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" }, { "address": "0x14bb06", "lines": [ - { - "function": { - "name": "Xorg 0x14bb06" - } - } + "Xorg 0x14bb06[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x13f976", "lines": [ - { - "function": { - "name": "Xorg 0x13f976" - } - } + "Xorg 0x13f976[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x62ab3", "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } + "Xorg 0x62ab3[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x66e51", "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } + "Xorg 0x66e51[]@:0" ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x4f394", "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x1243691", "lines": [ - { - "function": { - "name": "mutex_lock" - } - } + "mutex_lock[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8d5a9", "lines": [ - { - "function": { - "name": "gf100_vmm_invalidate" - } - } + "gf100_vmm_invalidate[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8d7ce", "lines": [ - { - "function": { - "name": "gf100_vmm_flush" - } - } + "gf100_vmm_flush[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x85937", "lines": [ - { - "function": { - "name": "nvkm_vmm_iter.isra.0" - } - } + "nvkm_vmm_iter.isra.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x8642e", "lines": [ - { - "function": { - "name": "nvkm_vmm_ptes_get_map" - } - } + "nvkm_vmm_ptes_get_map[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x866a4", "lines": [ - { - "function": { - "name": "nvkm_vmm_map_locked" - } - } + "nvkm_vmm_map_locked[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x885dd", "lines": [ - { - "function": { - "name": "nvkm_vmm_map" - } - } + "nvkm_vmm_map[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x837d6", "lines": [ - { - "function": { - "name": "nvkm_mem_map_dma" - } - } + "nvkm_mem_map_dma[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9107c", "lines": [ - { - "function": { - "name": "nvkm_uvmm_mthd_map.isra.0" - } - } + "nvkm_uvmm_mthd_map.isra.0[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x91e26", "lines": [ - { - "function": { - "name": "nvkm_uvmm_mthd" - } - } + "nvkm_uvmm_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xae89", "lines": [ - { - "function": { - "name": "nvkm_object_mthd" - } - } + "nvkm_object_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x950c", "lines": [ - { - "function": { - "name": "nvkm_ioctl_mthd" - } - } + "nvkm_ioctl_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x9b94", "lines": [ - { - "function": { - "name": "nvkm_ioctl" - } - } + "nvkm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11dcbd", "lines": [ - { - "function": { - "name": "nvkm_client_ioctl" - } - } + "nvkm_client_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x468", "lines": [ - { - "function": { - "name": "nvif_object_mthd" - } - } + "nvif_object_mthd[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x4a1e", "lines": [ - { - "function": { - "name": "nvif_vmm_map" - } - } + "nvif_vmm_map[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124f2b", "lines": [ - { - "function": { - "name": "nouveau_mem_map" - } - } + "nouveau_mem_map[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x126a83", "lines": [ - { - "function": { - "name": "nouveau_vma_new" - } - } + "nouveau_vma_new[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1231a4", "lines": [ - { - "function": { - "name": "nouveau_gem_object_open" - } - } + "nouveau_gem_object_open[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca6c96", "lines": [ - { - "function": { - "name": "drm_gem_handle_create_tail" - } - } + "drm_gem_handle_create_tail[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca6da4", "lines": [ - { - "function": { - "name": "drm_gem_handle_create" - } - } + "drm_gem_handle_create[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x123d0c", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_new" - } - } + "nouveau_gem_ioctl_new[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } + "libc.so.6 0x124dec[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } + "libdrm.so.2.4.0 0x7aff[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } + "libdrm.so.2.4.0 0xb02f[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x433a", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x433a" - } - } + "libdrm_nouveau.so.2.0.0 0x433a[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa0ecf1", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa0ecf1" - } - } + "nouveau_dri.so 0xa0ecf1[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0xa593e4", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa593e4" - } - } + "nouveau_dri.so 0xa593e4[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x5120", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5120" - } - } + "libdrm_nouveau.so.2.0.0 0x5120[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa59b08", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa59b08" - } - } + "nouveau_dri.so 0xa59b08[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x3baaa1", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x3baaa1" - } - } + "nouveau_dri.so 0x3baaa1[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x171ff", "lines": [ - { - "function": { - "name": "libkwinglutils.so.5.27.11 0x171ff" - } - } + "libkwinglutils.so.5.27.11 0x171ff[]@:0" ], - "mapping": { - "start": "0xa000", - "limit": "0x1d000", - "offset": "0xa000", - "filename": "libkwinglutils.so.5.27.11", - "build_id": "b79e87745522e8a9559a65a18dc70d96dafcb154" - } + "mapping": "0xa000-0x1d000@0xa000 libkwinglutils.so.5.27.11(b79e87745522e8a9559a65a18dc70d96dafcb154)" }, { "address": "0x270304", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x270304" - } - } + "libkwin.so.5.27.11 0x270304[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x284412", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x284412" - } - } + "libkwin.so.5.27.11 0x284412[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x275ea0", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x275ea0" - } - } + "libkwin.so.5.27.11 0x275ea0[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x1be5b7", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1be5b7" - } - } + "libkwin.so.5.27.11 0x1be5b7[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x1c3052", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1c3052" - } - } + "libkwin.so.5.27.11 0x1c3052[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x1c33bc", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1c33bc" - } - } + "libkwin.so.5.27.11 0x1c33bc[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x312e15", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x312e15" - } - } + "libQt5Core.so.5.15.13 0x312e15[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x172323", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x172323" - } - } + "libkwin.so.5.27.11 0x172323[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x1c912e", "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1c912e" - } - } + "libkwin.so.5.27.11 0x1c912e[]@:0" ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" }, { "address": "0x312e15", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x312e15" - } - } + "libQt5Core.so.5.15.13 0x312e15[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x31710c", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x31710c" - } - } + "libQt5Core.so.5.15.13 0x31710c[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x30624a", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x30624a" - } - } + "libQt5Core.so.5.15.13 0x30624a[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x16bd44", "lines": [ - { - "function": { - "name": "libQt5Widgets.so.5.15.13 0x16bd44" - } - } + "libQt5Widgets.so.5.15.13 0x16bd44[]@:0" ], - "mapping": { - "start": "0x14e000", - "limit": "0x545000", - "offset": "0x14e000", - "filename": "libQt5Widgets.so.5.15.13", - "build_id": "bfe07edc9e95f586e665ab542d433386d87d6409" - } + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" }, { "address": "0x2d8117", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x2d8117" - } - } + "libQt5Core.so.5.15.13 0x2d8117[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x3345aa", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x3345aa" - } - } + "libQt5Core.so.5.15.13 0x3345aa[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x334ed8", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x334ed8" - } - } + "libQt5Core.so.5.15.13 0x334ed8[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x5d5b4", "lines": [ - { - "function": { - "name": "libglib-2.0.so.0.8000.0 0x5d5b4" - } - } + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" ], - "mapping": { - "start": "0x1e000", - "limit": "0xbe000", - "offset": "0x1e000", - "filename": "libglib-2.0.so.0.8000.0", - "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" - } + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" }, { "address": "0xbc716", "lines": [ - { - "function": { - "name": "libglib-2.0.so.0.8000.0 0xbc716" - } - } + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" ], - "mapping": { - "start": "0x1e000", - "limit": "0xbe000", - "offset": "0x1e000", - "filename": "libglib-2.0.so.0.8000.0", - "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" - } + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" }, { "address": "0x5ca52", "lines": [ - { - "function": { - "name": "libglib-2.0.so.0.8000.0 0x5ca52" - } - } + "libglib-2.0.so.0.8000.0 0x5ca52[]@:0" ], - "mapping": { - "start": "0x1e000", - "limit": "0xbe000", - "offset": "0x1e000", - "filename": "libglib-2.0.so.0.8000.0", - "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" - } + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" }, { "address": "0x335278", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x335278" - } - } + "libQt5Core.so.5.15.13 0x335278[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x2d6a7a", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x2d6a7a" - } - } + "libQt5Core.so.5.15.13 0x2d6a7a[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x2df3e7", "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x2df3e7" - } - } + "libQt5Core.so.5.15.13 0x2df3e7[]@:0" ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" }, { "address": "0x47ba0", "lines": [ - { - "function": { - "name": "kwin_x11 0x47ba0" - } - } + "kwin_x11 0x47ba0[]@:0" ], - "mapping": { - "start": "0x3e000", - "limit": "0xef000", - "offset": "0x3e000", - "filename": "kwin_x11", - "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" - } + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" }, { "address": "0x2a1c9", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } + "libc.so.6 0x2a1c9[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x2a28a", "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } + "libc.so.6 0x2a28a[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x490e4", "lines": [ - { - "function": { - "name": "kwin_x11 0x490e4" - } - } - ], - "mapping": { - "start": "0x3e000", - "limit": "0xef000", - "offset": "0x3e000", - "filename": "kwin_x11", - "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" - } + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x225dd3", "lines": [ - { - "function": { - "name": "futex_wake" - } - } + "futex_wake[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x22291d", "lines": [ - { - "function": { - "name": "do_futex" - } - } + "do_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x223159", "lines": [ - { - "function": { - "name": "__x64_sys_futex" - } - } + "__x64_sys_futex[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x55d0", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x98fc6", "lines": [ - { - "function": { - "name": "libc.so.6 0x98fc6" - } - } + "libc.so.6 0x98fc6[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0xa1ac1", "lines": [ - { - "function": { - "name": "libc.so.6 0xa1ac1" - } - } + "libc.so.6 0xa1ac1[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x6a2a5", "lines": [ - { - "function": { - "name": "firefox-bin 0x6a2a5" - } - } + "firefox-bin 0x6a2a5[]@:0" ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x22000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" }, { "address": "0x2b07a52", "lines": [ - { - "function": { - "name": "libxul.so 0x2b07a52" - } - } + "libxul.so 0x2b07a52[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a5ecf8", "lines": [ - { - "function": { - "name": "libxul.so 0x2a5ecf8" - } - } + "libxul.so 0x2a5ecf8[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a5d620", "lines": [ - { - "function": { - "name": "libxul.so 0x2a5d620" - } - } + "libxul.so 0x2a5d620[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x2a83c8d", "lines": [ - { - "function": { - "name": "libxul.so 0x2a83c8d" - } - } + "libxul.so 0x2a83c8d[]@:0" ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" }, { "address": "0x197a1", "lines": [ - { - "function": { - "name": "libnspr4.so 0x197a1" - } - } + "libnspr4.so 0x197a1[]@:0" ], - "mapping": { - "start": "0x12000", - "limit": "0x35000", - "offset": "0x11000", - "filename": "libnspr4.so", - "build_id": "caa869f624148b1ec093de72d7992781a5411334" - } + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" }, { "address": "0x5dd1f", "lines": [ - { - "function": { - "name": "firefox-bin 0x5dd1f" - } - } + "firefox-bin 0x5dd1f[]@:0" ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x22000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" }, { "address": "0x9ca93", "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } + "libc.so.6 0x9ca93[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x129c3b", "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" } ], - "values": [ - 50000000 - ] + "values": "50000000" }, { "locations": [ { "address": "0x40ca45", "lines": [ - { - "function": { - "name": "vma_interval_tree_subtree_search" - } - } + "vma_interval_tree_subtree_search[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x40d2b9", "lines": [ - { - "function": { - "name": "vma_interval_tree_iter_first" - } - } + "vma_interval_tree_iter_first[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x41ea8e", "lines": [ - { - "function": { - "name": "unmap_mapping_range" - } - } + "unmap_mapping_range[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xdc4", "lines": [ - { - "function": { - "name": "ttm_bo_unmap_virtual" - } - } + "ttm_bo_unmap_virtual[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1762", "lines": [ - { - "function": { - "name": "ttm_bo_handle_move_mem" - } - } + "ttm_bo_handle_move_mem[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2361", "lines": [ - { - "function": { - "name": "ttm_bo_validate" - } - } + "ttm_bo_validate[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x2532", "lines": [ - { - "function": { - "name": "ttm_bo_init_reserved" - } - } + "ttm_bo_init_reserved[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1204a4", "lines": [ - { - "function": { - "name": "nouveau_bo_init" - } - } + "nouveau_bo_init[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x123b6c", "lines": [ - { - "function": { - "name": "nouveau_gem_new" - } - } + "nouveau_gem_new[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x123cbc", "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_new" - } - } + "nouveau_gem_ioctl_new[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca7e2b", "lines": [ - { - "function": { - "name": "drm_ioctl_kernel" - } - } + "drm_ioctl_kernel[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0xca8173", "lines": [ - { - "function": { - "name": "drm_ioctl" - } - } + "drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x11a2c0", "lines": [ - { - "function": { - "name": "nouveau_drm_ioctl" - } - } + "nouveau_drm_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x503812", "lines": [ - { - "function": { - "name": "__x64_sys_ioctl" - } - } + "__x64_sys_ioctl[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x6762", "lines": [ - { - "function": { - "name": "x64_sys_call" - } - } + "x64_sys_call[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x1228fde", "lines": [ - { - "function": { - "name": "do_syscall_64" - } - } + "do_syscall_64[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x140012f", "lines": [ - { - "function": { - "name": "entry_SYSCALL_64_after_hwframe" - } - } + "entry_SYSCALL_64_after_hwframe[]@:0" ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } + "mapping": "0x0-0x0@0x0 ()" }, { "address": "0x124dec", "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } + "libc.so.6 0x124dec[]@:0" ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" }, { "address": "0x7aff", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } + "libdrm.so.2.4.0 0x7aff[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0xb02f", "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } + "libdrm.so.2.4.0 0xb02f[]@:0" ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" }, { "address": "0x433a", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x433a" - } - } + "libdrm_nouveau.so.2.0.0 0x433a[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0xa0ecf1", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa0ecf1" - } - } + "nouveau_dri.so 0xa0ecf1[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0xa593e4", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa593e4" - } - } + "nouveau_dri.so 0xa593e4[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x5120", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5120" - } - } + "libdrm_nouveau.so.2.0.0 0x5120[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x53ba", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x5a1b", "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" }, { "address": "0x9fb761", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x9fb761" - } - } + "nouveau_dri.so 0x9fb761[]@:0" ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" }, { "address": "0x3eeb41", "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x3eeb41" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } + "nouveau_dri.so 0x3eeb41[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" } ], - "values": [ - 50000000 - ] + "values": "50000000" } ], "period": "1000000000" From 7ac7328e4ec79a2cb132abadbdbb234ab0d9365a Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Fri, 3 Jan 2025 01:12:17 -0500 Subject: [PATCH 8/8] rm dead data --- .../otel-ebpf-profiler-unsymbolized2.json | 45401 ---------------- 1 file changed, 45401 deletions(-) delete mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json deleted file mode 100644 index c1d7f2129d..0000000000 --- a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized2.json +++ /dev/null @@ -1,45401 +0,0 @@ -{ - "sample_types": [ - { - "type": "cpu", - "unit": "nanoseconds" - } - ], - "samples": [ - { - "locations": [ - { - "address": "0x4e", - "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 2522 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.access$getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 1 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd7", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl.dumbModeFinished(com.intellij.openapi.project.Project, com.intellij.openapi.fileEditor.ex.FileEditorProviderManager, kotlin.coroutines.Continuation)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 447 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "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)", - "filename": "FileEditorManagerImpl.kt" - }, - "line": 118 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$dumbModeFinished$1.invokeSuspend(java.lang.Object)", - "filename": "FileEditorManagerImpl.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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xcc3a29", - "lines": [ - { - "function": { - "name": "libjvm.so 0xcc3a29" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x685b45", - "lines": [ - { - "function": { - "name": "libjvm.so 0x685b45" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xdb21d0", - "lines": [ - { - "function": { - "name": "libjvm.so 0xdb21d0" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xdb24bc", - "lines": [ - { - "function": { - "name": "libjvm.so 0xdb24bc" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x6a88bb72f03b51a0", - "lines": [ - { - "function": { - "name": "ExceptionBlob" - } - } - ], - "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": "0x13d", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 102 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x6f6353f7de2420d8", - "lines": [ - { - "function": { - "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd1", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x98d61", - "lines": [ - { - "function": { - "name": "libc.so.6 0x98d61" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x9bc7d", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0xd141d3", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd141d3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xfb3d80", - "lines": [ - { - "function": { - "name": "libjvm.so 0xfb3d80" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "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": "0x98d60", - "lines": [ - { - "function": { - "name": "libc.so.6 0x98d60" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x9bc7d", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0xd141d3", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd141d3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xfb3d80", - "lines": [ - { - "function": { - "name": "libjvm.so 0xfb3d80" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)", - "filename": "ThreadContext.kt" - }, - "line": 31 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)", - "filename": "CoroutineContextImpl.kt" - }, - "line": 131 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)", - "filename": "ThreadContext.kt" - }, - "line": 55 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(kotlin.coroutines.CoroutineContext, java.lang.Object)", - "filename": "ThreadContext.kt" - }, - "line": 61 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x76", - "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": 270 - } - ], - "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x4b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.json.internal.StreamingJsonDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "StreamingJsonDecoder.kt" - }, - "line": 171 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd1", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", - "filename": "UTF8StreamJsonParser.java" - }, - "line": 2496 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x17", - "lines": [ - { - "function": { - "name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getValueAsString()", - "filename": "UTF8StreamJsonParser.java" - }, - "line": 337 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.StdDeserializer._deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "StdDeserializer.java" - }, - "line": 262 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x45", - "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "BeanDeserializerBase.java" - }, - "line": 1588 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x47", - "lines": [ - { - "function": { - "name": "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)", - "filename": "BeanDeserializer.java" - }, - "line": 197 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3a", - "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "BeanDeserializer.java" - }, - "line": 187 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x58", - "lines": [ - { - "function": { - "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext, java.util.Collection)", - "filename": "CollectionDeserializer.java" - }, - "line": 361 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2b", - "lines": [ - { - "function": { - "name": "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "CollectionDeserializer.java" - }, - "line": 246 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)", - "filename": "CollectionDeserializer.java" - }, - "line": 30 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "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)", - "filename": "DefaultDeserializationContext.java" - }, - "line": 342 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x57", - "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)", - "filename": "ObjectMapper.java" - }, - "line": 4905 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x18", - "lines": [ - { - "function": { - "name": "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper.readValue(java.io.InputStream, com.fasterxml.jackson.core.type.TypeReference)", - "filename": "ObjectMapper.java" - }, - "line": 3893 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.parseXmlIds(java.io.InputStream)", - "filename": "MarketplaceRequests.kt" - }, - "line": 697 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3b", - "lines": [ - { - "function": { - "name": "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.loadCachedJBPlugins()", - "filename": "MarketplaceRequests.kt" - }, - "line": 624 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1b", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 308 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8d", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 294 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "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": "0x80", - "lines": [ - { - "function": { - "name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", - "filename": "HashMap.java" - }, - "line": 585 - } - ], - "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": "0xb", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)", - "filename": "ExtensionsAreaImpl.kt" - }, - "line": 278 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)", - "filename": "ExtensionsAreaImpl.kt" - }, - "line": 272 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x37", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl$intellij_platform_extensions(com.intellij.openapi.extensions.AreaInstance)", - "filename": "BaseExtensionPointName.kt" - }, - "line": 18 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Iterable com.intellij.openapi.extensions.ExtensionPointName.getIterable()", - "filename": "ExtensionPointName.kt" - }, - "line": 134 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider.lambda$getFilteredScopes$0(com.intellij.psi.search.scope.packageSet.NamedScope)", - "filename": "CustomScopesProvider.java" - }, - "line": 18 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider$$Lambda+\u003chidden\u003e.value(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x44", - "lines": [ - { - "function": { - "name": "java.util.List com.intellij.util.containers.ContainerUtil.findAll(java.util.Collection, com.intellij.openapi.util.Condition)", - "filename": "ContainerUtil.java" - }, - "line": 1031 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "java.util.List com.intellij.util.containers.ContainerUtil.filter(java.util.Collection, com.intellij.openapi.util.Condition)", - "filename": "ContainerUtil.java" - }, - "line": 1006 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "java.util.List com.intellij.psi.search.scope.packageSet.CustomScopesProvider.getFilteredScopes()", - "filename": "CustomScopesProvider.java" - }, - "line": 17 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3f", - "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getPredefinedScope(java.lang.String)", - "filename": "DependencyValidationManagerImpl.java" - }, - "line": 69 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x34", - "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getScope(java.lang.String)", - "filename": "NamedScopesHolder.java" - }, - "line": 172 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String, com.intellij.packageDependencies.DependencyValidationManagerImpl$State)", - "filename": "DependencyValidationManagerImpl.java" - }, - "line": 253 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String)", - "filename": "DependencyValidationManagerImpl.java" - }, - "line": 249 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "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)", - "filename": "NamedScopesHolder.java" - }, - "line": 117 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3c", - "lines": [ - { - "function": { - "name": "com.intellij.ui.tabs.FileColorConfiguration com.intellij.ui.tabs.FileColorsModel.findConfiguration(com.intellij.openapi.vfs.VirtualFile)", - "filename": "FileColorsModel.java" - }, - "line": 240 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.lambda$getColor$0(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", - "filename": "FileColorsModel.java" - }, - "line": 210 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tabs.FileColorsModel$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 272 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 262 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)", - "filename": "ApplicationImpl.java" - }, - "line": 863 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", - "filename": "ReadAction.java" - }, - "line": 66 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "java.lang.String com.intellij.ui.tabs.FileColorsModel.getColor(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)", - "filename": "FileColorsModel.java" - }, - "line": 209 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ui.tabs.FileColorManagerImpl.getFileColor(com.intellij.openapi.vfs.VirtualFile)", - "filename": "FileColorManagerImpl.java" - }, - "line": 153 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1f", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ui.tabs.EditorTabColorProviderImpl.getProjectViewColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "EditorTabColorProviderImpl.java" - }, - "line": 31 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x35", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.openapi.fileEditor.impl.EditorTabPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "EditorTabPresentationUtil.kt" - }, - "line": 88 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.openapi.vfs.newvfs.VfsPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "VfsPresentationUtil.java" - }, - "line": 41 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.openapi.vfs.VirtualFile)", - "filename": "FilePresentationServiceImpl.kt" - }, - "line": 21 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.psi.PsiElement)", - "filename": "FilePresentationServiceImpl.kt" - }, - "line": 30 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ide.util.treeView.AbstractTreeNode.computeBackgroundColor()", - "filename": "AbstractTreeNode.java" - }, - "line": 290 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.awt.Color com.intellij.ide.projectView.ProjectViewNode.computeBackgroundColor()", - "filename": "ProjectViewNode.java" - }, - "line": 361 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "com.intellij.ide.projectView.PresentationData com.intellij.ide.util.treeView.PresentableNodeDescriptor.getUpdatedPresentation()", - "filename": "PresentableNodeDescriptor.java" - }, - "line": 87 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "boolean com.intellij.ide.util.treeView.PresentableNodeDescriptor.update()", - "filename": "PresentableNodeDescriptor.java" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa", - "lines": [ - { - "function": { - "name": "boolean com.intellij.ui.tree.StructureTreeModel$Node.update()", - "filename": "StructureTreeModel.java" - }, - "line": 540 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8d", - "lines": [ - { - "function": { - "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.invalidateInternal(com.intellij.ui.tree.StructureTreeModel$Node, boolean)", - "filename": "StructureTreeModel.java" - }, - "line": 247 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.lambda$invalidate$5(boolean, com.intellij.ui.tree.StructureTreeModel$Node)", - "filename": "StructureTreeModel.java" - }, - "line": 211 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "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)", - "filename": "StructureTreeModel.java" - }, - "line": 146 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$1(java.util.function.Function, java.util.concurrent.CompletableFuture)", - "filename": "StructureTreeModel.java" - }, - "line": 124 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.get()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$Task.run()", - "filename": "Invoker.java" - }, - "line": 361 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.concurrency.CoroutineInvokerDelegate.run(java.lang.Runnable, org.jetbrains.concurrency.AsyncPromise)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 38 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1d", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker.invokeSafely(com.intellij.util.concurrency.Invoker$Task, int)", - "filename": "Invoker.java" - }, - "line": 189 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(com.intellij.util.concurrency.Invoker$Task, int)", - "filename": "Invoker.java" - }, - "line": 173 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1d", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$Background.lambda$offer$0(java.lang.Runnable)", - "filename": "Invoker.java" - }, - "line": 470 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.Invoker$Background$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.util.concurrency.CoroutineInvokerDelegate.offer$lambda$2(java.lang.Runnable, com.intellij.util.concurrency.CoroutineInvokerDelegate)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 27 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.CoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend$lambda$1$lambda$0(kotlin.jvm.functions.Function0)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 97 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext$lambda$0(kotlin.jvm.functions.Function0)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 73 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 72 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11a", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend(java.lang.Object)", - "filename": "CoroutineInvokerDelegate.kt" - }, - "line": 96 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "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": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd1", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "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": "libc.so.6 0x98d60" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x9bc7d", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9bc7d" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0xd141d3", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd141d3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xfb3d80", - "lines": [ - { - "function": { - "name": "libjvm.so 0xfb3d80" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "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": "0x1f", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()", - "filename": "CoroutineScheduler.kt" - }, - "line": 924 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x63", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()", - "filename": "CoroutineScheduler.kt" - }, - "line": 860 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x62", - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", - "filename": "String.java" - }, - "line": 1425 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", - "filename": "StringsJVM.kt" - }, - "line": 217 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", - "filename": "Encoding.kt" - }, - "line": 384 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", - "filename": "Encoding.kt" - }, - "line": 288 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "Primitives.kt" - }, - "line": 160 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "Primitives.kt" - }, - "line": 156 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1d", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 100 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "void java.lang.String.\u003cinit\u003e(java.nio.charset.Charset, byte[], int, int)", - "filename": "String.java" - }, - "line": 532 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)", - "filename": "String.java" - }, - "line": 1425 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])", - "filename": "StringsJVM.kt" - }, - "line": 217 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", - "filename": "Encoding.kt" - }, - "line": 384 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", - "filename": "Encoding.kt" - }, - "line": 288 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", - "filename": "AbstractDecoder.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xbd", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd1", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "int kotlinx.serialization.cbor.internal.CborListReader.decodeElementIndex(kotlinx.serialization.descriptors.SerialDescriptor)", - "filename": "Encoding.kt" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x51", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd1", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x6f6353f7de2420d8", - "lines": [ - { - "function": { - "name": "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy]" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readExact(kotlinx.serialization.cbor.internal.ByteArrayInput, int)", - "filename": "Encoding.kt" - }, - "line": 432 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x68", - "lines": [ - { - "function": { - "name": "long kotlinx.serialization.cbor.internal.CborDecoder.readNumber()", - "filename": "Encoding.kt" - }, - "line": 426 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "byte[] kotlinx.serialization.cbor.internal.CborDecoder.readBytes()", - "filename": "Encoding.kt" - }, - "line": 394 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()", - "filename": "Encoding.kt" - }, - "line": 383 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()", - "filename": "Encoding.kt" - }, - "line": 288 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)", - "filename": "AbstractDecoder.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xbd", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 13 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 80 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "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)", - "filename": "Decoding.kt" - }, - "line": 538 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd1", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 111 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x61", - "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 1034 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)", - "filename": "CoroutineScheduler.kt" - }, - "line": 999 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1b", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", - "filename": "CoroutineScheduler.kt" - }, - "line": 758 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xfd", - "lines": [ - { - "function": { - "name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", - "filename": "HashMap.java" - }, - "line": 663 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)", - "filename": "HashMap.java" - }, - "line": 618 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xdb", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 113 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)", - "filename": "CollectionSerializers.kt" - }, - "line": 84 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 51 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)", - "filename": "CollectionSerializers.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "CollectionSerializers.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 43 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)", - "filename": "AbstractDecoder.kt" - }, - "line": 70 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9a", - "lines": [ - { - "function": { - "name": "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)", - "filename": "data.kt" - }, - "line": 48 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)", - "filename": "Decoding.kt" - }, - "line": 257 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "AbstractDecoder.kt" - }, - "line": 16 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4c", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)", - "filename": "Encoding.kt" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])", - "filename": "Cbor.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x81", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)", - "filename": "InternalStateStorageService.kt" - }, - "line": 58 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "LocalSettingsController.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 37 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)", - "filename": "SettingsControllerMediator.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.settings.SettingImpl.get()", - "filename": "SettingDescriptorImpl.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc5", - "lines": [ - { - "function": { - "name": "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)", - "filename": "State.kt" - }, - "line": 191 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x77", - "lines": [ - { - "function": { - "name": "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)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 293 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc2", - "lines": [ - { - "function": { - "name": "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PluginAdvertiserEditorNotificationProvider.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 244 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()", - "filename": "\u003cunknown\u003e" - } - } - ], - "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": "0x59", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)", - "filename": "InternalReadAction.kt" - }, - "line": 53 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.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$6.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": "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": "0xc6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", - "filename": "InternalReadAction.kt" - }, - "line": 49 - } - ], - "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": "0xe", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 62 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", - "filename": "coroutines.kt" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x189", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)", - "filename": "EditorNotificationsImpl.kt" - }, - "line": 241 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", - "filename": "AbstractCoroutine.kt" - }, - "line": 97 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)", - "filename": "DebugProbesImpl.kt" - }, - "line": 545 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x76", - "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 46 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13d", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.DispatchedTask.run()", - "filename": "DispatchedTask.kt" - }, - "line": 102 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xad644", - "lines": [ - { - "function": { - "name": "libc.so.6 0xad644" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2f3db", - "lines": [ - { - "function": { - "name": "libawt_xawt.so 0x2f3db" - } - } - ], - "mapping": { - "start": "0x13000", - "limit": "0x5d000", - "offset": "0x13000", - "filename": "libawt_xawt.so", - "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" - } - }, - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRBackendNative.XRenderRectanglesNative(int, byte, short, short, short, short, int[], int)", - "filename": "XRBackendNative.java" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRBackendNative.renderRectangles(int, byte, sun.java2d.xr.XRColor, sun.java2d.xr.GrowableRectArray)", - "filename": "XRBackendNative.java" - }, - "line": 217 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MaskTileManager.java" - }, - "line": 183 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc8", - "lines": [ - { - "function": { - "name": "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)", - "filename": "MaskTileManager.java" - }, - "line": 104 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x27", - "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)", - "filename": "XRRenderer.java" - }, - "line": 275 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x51", - "lines": [ - { - "function": { - "name": "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", - "filename": "XRRenderer.java" - }, - "line": 349 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)", - "filename": "ValidatePipe.java" - }, - "line": 160 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)", - "filename": "SunGraphics2D.java" - }, - "line": 2532 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)", - "filename": "RectanglePainter2D.java" - }, - "line": 211 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x23", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)", - "filename": "PaintUtil.java" - }, - "line": 402 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xde", - "lines": [ - { - "function": { - "name": "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)", - "filename": "RectanglePainter2D.java" - }, - "line": 210 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x40", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", - "filename": "RectanglePainter.java" - }, - "line": 28 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)", - "filename": "RectanglePainter.java" - }, - "line": 21 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", - "filename": "RectanglePainter.java" - }, - "line": 18 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3e", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)", - "filename": "ScrollBarPainter.java" - }, - "line": 212 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)", - "filename": "ScrollBarPainter.java" - }, - "line": 192 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe9", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 150 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1e", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paintTrack(java.awt.Graphics2D, javax.swing.JComponent)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x240", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)", - "filename": "DefaultScrollBarUI.kt" - }, - "line": 309 - } - ], - "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": "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": "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x324", - "lines": [ - { - "function": { - "name": "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)", - "filename": "XRTextRenderer.java" - }, - "line": 95 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa5", - "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", - "filename": "GlyphListPipe.java" - }, - "line": 71 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)", - "filename": "ValidatePipe.java" - }, - "line": 165 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x42", - "lines": [ - { - "function": { - "name": "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)", - "filename": "SunGraphics2D.java" - }, - "line": 2962 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)", - "filename": "SimpleColoredComponent.java" - }, - "line": 1500 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x34", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)", - "filename": "SimpleColoredComponent.java" - }, - "line": 536 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1ea", - "lines": [ - { - "function": { - "name": "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)", - "filename": "SimpleColoredComponent.java" - }, - "line": 895 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x15eefa", - "lines": [ - { - "function": { - "name": "try_to_wake_up" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15f46f", - "lines": [ - { - "function": { - "name": "wake_up_q" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x225ea6", - "lines": [ - { - "function": { - "name": "futex_wake" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x22291d", - "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": "0x9b05e", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9b05e" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0xfb2099", - "lines": [ - { - "function": { - "name": "libjvm.so 0xfb2099" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "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": "0x1e", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", - "filename": "AbstractQueuedSynchronizer.java" - }, - "line": 645 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", - "filename": "AbstractQueuedSynchronizer.java" - }, - "line": 1060 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.locks.ReentrantLock.unlock()", - "filename": "ReentrantLock.java" - }, - "line": 494 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "void sun.awt.SunToolkit.awtUnlock()", - "filename": "SunToolkit.java" - }, - "line": 271 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x38", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)", - "filename": "XComponentPeer.java" - }, - "line": 726 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor)", - "filename": "XComponentPeer.java" - }, - "line": 699 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XGlobalCursorManager.updateGrabbedCursor(java.awt.Cursor)", - "filename": "XGlobalCursorManager.java" - }, - "line": 107 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x89", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)", - "filename": "XGlobalCursorManager.java" - }, - "line": 94 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9c", - "lines": [ - { - "function": { - "name": "void sun.awt.GlobalCursorManager._updateCursor(boolean)", - "filename": "GlobalCursorManager.java" - }, - "line": 205 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1b", - "lines": [ - { - "function": { - "name": "void sun.awt.GlobalCursorManager.updateCursorImmediately()", - "filename": "GlobalCursorManager.java" - }, - "line": 95 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.updateCursorImmediately()", - "filename": "XComponentPeer.java" - }, - "line": 695 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x31", - "lines": [ - { - "function": { - "name": "void java.awt.Component.updateCursorImmediately()", - "filename": "Component.java" - }, - "line": 3262 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x49", - "lines": [ - { - "function": { - "name": "void java.awt.Component.show()", - "filename": "Component.java" - }, - "line": 1730 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x30", - "lines": [ - { - "function": { - "name": "void java.awt.Window.show()", - "filename": "Window.java" - }, - "line": 1078 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void javax.swing.Popup$HeavyWeightWindow.show()", - "filename": "Popup.java" - }, - "line": 270 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa", - "lines": [ - { - "function": { - "name": "void javax.swing.Popup.show()", - "filename": "Popup.java" - }, - "line": 112 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.popup.HeavyWeightPopup.show()", - "filename": "HeavyWeightPopup.java" - }, - "line": 21 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x61", - "lines": [ - { - "function": { - "name": "void javax.swing.JPopupMenu.showPopup()", - "filename": "JPopupMenu.java" - }, - "line": 886 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x75", - "lines": [ - { - "function": { - "name": "void javax.swing.JPopupMenu.setVisible(boolean)", - "filename": "JPopupMenu.java" - }, - "line": 829 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.setVisible(boolean)", - "filename": "ActionPopupMenuImpl.java" - }, - "line": 164 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9e", - "lines": [ - { - "function": { - "name": "void javax.swing.JPopupMenu.show(java.awt.Component, int, int)", - "filename": "JPopupMenu.java" - }, - "line": 1003 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.ui.JBPopupMenu.show(java.awt.Component, int, int)", - "filename": "JBPopupMenu.java" - }, - "line": 54 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x135", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.show(java.awt.Component, int, int)", - "filename": "ActionPopupMenuImpl.java" - }, - "line": 146 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5f", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.PopupHandler$2.invokePopup(java.awt.Component, int, int)", - "filename": "PopupHandler.java" - }, - "line": 132 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.PopupHandler.mousePressed(java.awt.event.MouseEvent)", - "filename": "PopupHandler.java" - }, - "line": 47 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", - "filename": "AWTEventMulticaster.java" - }, - "line": 288 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)", - "filename": "AWTEventMulticaster.java" - }, - "line": 287 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x36", - "lines": [ - { - "function": { - "name": "void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Component.java" - }, - "line": 6659 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x17", - "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "JComponent.java" - }, - "line": 3394 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x29", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.treeStructure.Tree.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Tree.java" - }, - "line": 479 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.dnd.aware.DnDAwareTree.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "DnDAwareTree.java" - }, - "line": 46 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x51", - "lines": [ - { - "function": { - "name": "void java.awt.Component.processEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 6427 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void java.awt.Container.processEvent(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2266 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x228", - "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 5032 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2324 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a1", - "lines": [ - { - "function": { - "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4963 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x90", - "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4574 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x32", - "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 4518 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2310 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Window.java" - }, - "line": 2810 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x29", - "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 783 - } - ], - "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": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "ProtectionDomain.java" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 755 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 753 - } - ], - "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": "0x49", - "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 752 - } - ], - "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": "0x43", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 621 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } - ], - "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": "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": "0x115", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } - ], - "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": "0x3f", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 117 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "java.util.Set kotlin.collections.SetsKt__SetsJVMKt.setOf(java.lang.Object)", - "filename": "SetsJVM.kt" - }, - "line": 20 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x20", - "lines": [ - { - "function": { - "name": "kotlinx.coroutines.Job com.intellij.ui.DeferredIconImpl.scheduleEvaluation(java.awt.Component, int, int)", - "filename": "DeferredIconImpl.kt" - }, - "line": 200 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4e", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "DeferredIconImpl.kt" - }, - "line": 163 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa5", - "lines": [ - { - "function": { - "name": "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)", - "filename": "RowIcon.kt" - }, - "line": 110 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)", - "filename": "IconUtil.kt" - }, - "line": 251 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3c", - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2088 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x43", - "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x43", - "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x43", - "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x43", - "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2099 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)", - "filename": "SunToolkit.java" - }, - "line": 2084 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void javax.swing.LookAndFeel.installProperty(javax.swing.JComponent, java.lang.String, java.lang.Object)", - "filename": "LookAndFeel.java" - }, - "line": 280 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void javax.swing.plaf.basic.BasicLabelUI.installDefaults(javax.swing.JLabel)", - "filename": "BasicLabelUI.java" - }, - "line": 369 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void javax.swing.plaf.basic.BasicLabelUI.installUI(javax.swing.JComponent)", - "filename": "BasicLabelUI.java" - }, - "line": 348 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x41", - "lines": [ - { - "function": { - "name": "void javax.swing.JComponent.setUI(javax.swing.plaf.ComponentUI)", - "filename": "JComponent.java" - }, - "line": 743 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.setUI(javax.swing.plaf.LabelUI)", - "filename": "JLabel.java" - }, - "line": 274 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.updateUI()", - "filename": "JLabel.java" - }, - "line": 288 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x53", - "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.\u003cinit\u003e(java.lang.String, javax.swing.Icon, int)", - "filename": "JLabel.java" - }, - "line": 180 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "void javax.swing.JLabel.\u003cinit\u003e()", - "filename": "JLabel.java" - }, - "line": 251 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10d", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.$$$setupUI$$$()", - "filename": "PresentationModeProgressPanel.java" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.\u003cinit\u003e(com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", - "filename": "PresentationModeProgressPanel.java" - }, - "line": 35 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5a", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.show(javax.swing.JRootPane)", - "filename": "ProcessBalloon.kt" - }, - "line": 63 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.ProcessBalloon.addIndicator(javax.swing.JRootPane, com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)", - "filename": "ProcessBalloon.kt" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6a", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.InfoAndProgressPanel.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", - "filename": "InfoAndProgressPanel.kt" - }, - "line": 248 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x59", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgressImpl$intellij_platform_ide_impl(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", - "filename": "IdeStatusBarImpl.kt" - }, - "line": 541 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1d", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)", - "filename": "IdeStatusBarImpl.kt" - }, - "line": 464 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.doBackground(com.intellij.openapi.wm.ex.StatusBarEx)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 163 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.initializeStatusBar()", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 94 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf", - "lines": [ - { - "function": { - "name": "void com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(java.lang.Runnable)", - "filename": "EdtInvocationManager.java" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x35", - "lines": [ - { - "function": { - "name": "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)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 68 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 56 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "BackgroundableProcessIndicator.java" - }, - "line": 41 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4d", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.progress.ProgressIndicator com.intellij.openapi.progress.impl.ProgressManagerImpl.createDefaultAsynchronousProgressIndicator(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "ProgressManagerImpl.java" - }, - "line": 149 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.util.concurrent.Future com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "CoreProgressManager.java" - }, - "line": 476 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3b", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)", - "filename": "CoreProgressManager.java" - }, - "line": 453 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5f", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.run(com.intellij.openapi.progress.Task)", - "filename": "CoreProgressManager.java" - }, - "line": 436 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x26", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startInBackgroundWithVisibleOrInvisibleProgress(kotlin.jvm.functions.Function1)", - "filename": "MergingQueueGuiExecutor.kt" - }, - "line": 205 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x23", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess$lambda$6(com.intellij.openapi.project.MergingQueueGuiExecutor, kotlin.jvm.functions.Function0, com.intellij.openapi.project.SingleTaskExecutor$AutoclosableProgressive)", - "filename": "MergingQueueGuiExecutor.kt" - }, - "line": 153 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor$$Lambda+\u003chidden\u003e.accept(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa3", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.project.SingleTaskExecutor.tryStartProcess(java.util.function.Consumer)", - "filename": "SingleTaskExecutor.kt" - }, - "line": 105 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3a", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess(kotlin.jvm.functions.Function0)", - "filename": "MergingQueueGuiExecutor.kt" - }, - "line": 148 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher.launch()", - "filename": "DumbServiceImpl.kt" - }, - "line": 116 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2c", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$queueTaskOnEdt$1.invokeSuspend(java.lang.Object)", - "filename": "DumbServiceImpl.kt" - }, - "line": 433 - } - ], - "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": "0x33", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", - "filename": "DispatchedRunnable.kt" - }, - "line": 44 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 236 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 25 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", - "filename": "TransactionGuardImpl.java" - }, - "line": 218 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x67", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.AsyncFileListener$ChangeApplier com.intellij.workspaceModel.ide.impl.WorkspaceModelRootWatcher.prepareChange(java.util.List)", - "filename": "WorkspaceModelRootWatcher.kt" - }, - "line": 18 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport.lambda$runAsyncListeners$0(java.util.List, com.intellij.openapi.vfs.AsyncFileListener, java.util.List)", - "filename": "AsyncEventSupport.java" - }, - "line": 90 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 258 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x21", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 272 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 258 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 853 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7c", - "lines": [ - { - "function": { - "name": "java.util.List com.intellij.openapi.vfs.newvfs.AsyncEventSupport.runAsyncListeners(java.util.List)", - "filename": "AsyncEventSupport.java" - }, - "line": 90 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1.before(java.util.List)", - "filename": "AsyncEventSupport.java" - }, - "line": 54 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x18", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e27444a4000.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x37", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec400.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 768 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x38", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 708 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x66", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 533 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6a", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.messages.impl.ToDirectChildrenMessagePublisher.publish$intellij_platform_core(java.lang.reflect.Method, java.lang.Object[], com.intellij.util.messages.impl.MessageQueue)", - "filename": "CompositeMessageBus.kt" - }, - "line": 281 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x37", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 481 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy156.before(java.util.List)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$fireBeforeEvents$20(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", - "filename": "PersistentFSImpl.java" - }, - "line": 1483 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1e", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", - "filename": "PersistentFSImpl.java" - }, - "line": 1107 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x24", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.fireBeforeEvents(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", - "filename": "PersistentFSImpl.java" - }, - "line": 1482 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$processEvent$11(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)", - "filename": "PersistentFSImpl.java" - }, - "line": 1088 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1e", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)", - "filename": "PersistentFSImpl.java" - }, - "line": 1107 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x63", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.processEvent(com.intellij.openapi.vfs.newvfs.events.VFileEvent)", - "filename": "PersistentFSImpl.java" - }, - "line": 1087 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x29", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.deleteFile(java.lang.Object, com.intellij.openapi.vfs.VirtualFile)", - "filename": "PersistentFSImpl.java" - }, - "line": 762 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.vfs.newvfs.impl.VirtualFileSystemEntry.delete(java.lang.Object)", - "filename": "VirtualFileSystemEntry.java" - }, - "line": 302 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x46", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.PsiFileImplUtil.doDelete(com.intellij.psi.PsiFile)", - "filename": "PsiFileImplUtil.java" - }, - "line": 92 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.PsiBinaryFileImpl.delete()", - "filename": "PsiBinaryFileImpl.java" - }, - "line": 209 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1e", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.lambda$doDeleteFiles$5(com.intellij.ide.util.DeleteHandler$LocalFilesDeleteTask, com.intellij.openapi.project.Project)", - "filename": "DeleteHandler.java" - }, - "line": 335 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 389 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 896 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xcc", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.doDeleteFiles(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 332 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x46", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$0(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 225 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.fileEditor.impl.NonProjectFileWritingAccessProvider.disableChecksDuring(java.lang.Runnable)", - "filename": "NonProjectFileWritingAccessProvider.java" - }, - "line": 172 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$1(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 212 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xdd", - "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreCommandProcessor.java" - }, - "line": 226 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreCommandProcessor.java" - }, - "line": 178 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreCommandProcessor.java" - }, - "line": 168 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object)", - "filename": "CoreCommandProcessor.java" - }, - "line": 154 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.deleteInCommand(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])", - "filename": "DeleteHandler.java" - }, - "line": 212 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15a", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project, boolean)", - "filename": "DeleteHandler.java" - }, - "line": 197 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project)", - "filename": "DeleteHandler.java" - }, - "line": 124 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x76", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.projectView.impl.ProjectViewDeleteElementProvider.deleteElement(com.intellij.openapi.actionSystem.DataContext)", - "filename": "ProjectViewDeleteElementProvider.java" - }, - "line": 60 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.actions.DeleteAction.actionPerformed(com.intellij.openapi.actionSystem.AnActionEvent)", - "filename": "DeleteAction.java" - }, - "line": 33 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa1", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.util.function.Consumer)", - "filename": "ActionUtil.kt" - }, - "line": 374 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x28", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.ActionProcessor.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", - "filename": "ActionProcessor.java" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x17", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$actionProcessor$1.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 499 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 850 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$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": "0x6", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3f", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 850 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1ca", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", - "filename": "ActionManagerImpl.kt" - }, - "line": 1173 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareWithCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)", - "filename": "ActionUtil.kt" - }, - "line": 396 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x32", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 848 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 1 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x185", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 577 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x48", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 512 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(javax.swing.KeyStroke)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 451 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x146", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState()", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 444 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2c9", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(java.awt.event.KeyEvent)", - "filename": "IdeKeyEventDispatcher.kt" - }, - "line": 306 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchKeyEvent(java.awt.event.KeyEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 606 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$22(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 565 - } - ], - "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": "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": "0x130", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 565 - } - ], - "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": "0x3f", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 117 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x40f84", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x40f84" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x46148", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x46148" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x2b478", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x2b478" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x737aa", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x737aa" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x74e94", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x74e94" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x78b39", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x78b39" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x632d6", - "lines": [ - { - "function": { - "name": "libX11.so.6.4.0 0x632d6" - } - } - ], - "mapping": { - "start": "0x19000", - "limit": "0xa9000", - "offset": "0x19000", - "filename": "libX11.so.6.4.0", - "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" - } - }, - { - "address": "0x3f999", - "lines": [ - { - "function": { - "name": "libawt_xawt.so 0x3f999" - } - } - ], - "mapping": { - "start": "0x13000", - "limit": "0x5d000", - "offset": "0x13000", - "filename": "libawt_xawt.so", - "build_id": "134d9e7faf72035d5f259dcf73c8774bb044da7a" - } - }, - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "java.lang.String sun.awt.X11InputMethodBase.resetXIC()", - "filename": "X11InputMethodBase.java" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "java.lang.String sun.awt.X11InputMethodBase.invokeResetXIC()", - "filename": "X11InputMethodBase.java" - }, - "line": 802 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XInputMethod.endComposition()", - "filename": "XInputMethod.java" - }, - "line": 135 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XInputMethod.dispatchEvent(java.awt.AWTEvent)", - "filename": "XInputMethod.java" - }, - "line": 115 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa7", - "lines": [ - { - "function": { - "name": "void sun.awt.im.InputContext.dispatchEvent(java.awt.AWTEvent)", - "filename": "InputContext.java" - }, - "line": 263 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3a", - "lines": [ - { - "function": { - "name": "void sun.awt.im.InputMethodContext.dispatchEvent(java.awt.AWTEvent)", - "filename": "InputMethodContext.java" - }, - "line": 197 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16d", - "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4974 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2a", - "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2324 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1a1", - "lines": [ - { - "function": { - "name": "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4963 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x90", - "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)", - "filename": "Container.java" - }, - "line": 4574 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x32", - "lines": [ - { - "function": { - "name": "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 4518 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Container.java" - }, - "line": 2310 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)", - "filename": "Window.java" - }, - "line": 2810 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)", - "filename": "Component.java" - }, - "line": 4860 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x29", - "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", - "filename": "EventQueue.java" - }, - "line": 783 - } - ], - "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": "0x6", - "lines": [ - { - "function": { - "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)", - "filename": "ProtectionDomain.java" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "java.lang.Void java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 755 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.lang.Object java.awt.EventQueue$5.run()", - "filename": "EventQueue.java" - }, - "line": 753 - } - ], - "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": "0x49", - "lines": [ - { - "function": { - "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", - "filename": "EventQueue.java" - }, - "line": 752 - } - ], - "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": "0x43", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 621 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } - ], - "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": "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": "0x115", - "lines": [ - { - "function": { - "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", - "filename": "IdeEventQueue.kt" - }, - "line": 564 - } - ], - "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": "0x3f", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 117 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x3f", - "lines": [ - { - "function": { - "name": "int java.util.Arrays.binarySearch0(int[], int, int, int)", - "filename": "Arrays.java" - }, - "line": 1717 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "int java.util.Arrays.binarySearch(int[], int)", - "filename": "Arrays.java" - }, - "line": 1660 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x55", - "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.impl.LineSet.findLineIndex(int)", - "filename": "LineSet.java" - }, - "line": 169 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.impl.DocumentImpl.getLineNumber(int)", - "filename": "DocumentImpl.java" - }, - "line": 1034 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x53", - "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.impl.RangeHighlighterImpl.getAffectedAreaStartOffset()", - "filename": "RangeHighlighterImpl.java" - }, - "line": 384 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "int com.intellij.openapi.editor.ex.RangeHighlighterEx$$Lambda+\u003chidden\u003e.applyAsInt(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "int java.util.Comparator.lambda$comparingInt$7b0bb60$1(java.util.function.ToIntFunction, java.lang.Object, java.lang.Object)", - "filename": "Comparator.java" - }, - "line": 494 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "int java.util.Comparator$$Lambda+\u003chidden\u003e.compare(java.lang.Object, java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5c", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.ex.MarkupIterator$2.choose()", - "filename": "MarkupIterator.java" - }, - "line": 71 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.editor.ex.MarkupIterator$2.peek()", - "filename": "MarkupIterator.java" - }, - "line": 82 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.peek()", - "filename": "FilteringMarkupIterator.java" - }, - "line": 29 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.FilteringMarkupIterator.skipUnrelated()", - "filename": "FilteringMarkupIterator.java" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.next()", - "filename": "FilteringMarkupIterator.java" - }, - "line": 40 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x58", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processRangeHighlighters(int, int, com.intellij.openapi.editor.impl.EditorGutterComponentImpl$RangeHighlighterProcessor)", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 877 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x25", - "lines": [ - { - "function": { - "name": "it.unimi.dsi.fastutil.ints.Int2ObjectMap com.intellij.openapi.editor.impl.EditorGutterComponentImpl.buildGutterRenderersCache()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 1054 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "it.unimi.dsi.fastutil.objects.ObjectIterable com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processGutterRenderers()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 1199 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x96", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.calcLineMarkerAreaWidth(boolean)", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 1129 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize(boolean, boolean)", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 954 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 944 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$1.exitDumbMode()", - "filename": "EditorGutterComponentImpl.java" - }, - "line": 234 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x26", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 765 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x47", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 712 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 451 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x45", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 420 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 1 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x58", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 487 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy225.handle(com.intellij.execution.services.ServiceEventListener$ServiceEvent)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl.updateDashboard(boolean)", - "filename": "RunDashboardManagerImpl.java" - }, - "line": 464 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl$8.exitDumbMode()", - "filename": "RunDashboardManagerImpl.java" - }, - "line": 229 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x26", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 765 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x47", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 712 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 451 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x45", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 420 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 1 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x68", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 493 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy139.beforePsiChanged(boolean)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.PsiManagerImpl.beforeChange(boolean)", - "filename": "PsiManagerImpl.java" - }, - "line": 434 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.PsiManagerImpl.beforePropertyChange(com.intellij.psi.impl.PsiTreeChangeEventImpl)", - "filename": "PsiManagerImpl.java" - }, - "line": 252 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x18", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$3(boolean)", - "filename": "FileManagerImpl.java" - }, - "line": 305 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 389 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 379 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)", - "filename": "ApplicationImpl.java" - }, - "line": 896 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$4(boolean)", - "filename": "FileManagerImpl.java" - }, - "line": 302 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.DebugUtil.performPsiModification(java.lang.String, com.intellij.util.ThrowableRunnable)", - "filename": "DebugUtil.java" - }, - "line": 534 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl.processFileTypesChanged(boolean)", - "filename": "FileManagerImpl.java" - }, - "line": 300 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void com.intellij.psi.impl.file.impl.FileManagerImpl$1.exitDumbMode()", - "filename": "FileManagerImpl.java" - }, - "line": 81 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x15", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$DMH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x26", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)", - "filename": "LambdaForm$MH" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)", - "filename": "MessageBusImpl.kt" - }, - "line": 765 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x47", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 712 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "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)", - "filename": "MessageBusImpl.kt" - }, - "line": 451 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x97", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 430 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)", - "filename": "MessageBusImpl.kt" - }, - "line": 1 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x68", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", - "filename": "MessageBusImpl.kt" - }, - "line": 493 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void jdk.proxy2.$Proxy75.exitDumbMode()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12$lambda$11(com.intellij.openapi.project.DumbServiceImpl)", - "filename": "DumbServiceImpl.kt" - }, - "line": 359 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$$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": "0x6", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12(com.intellij.openapi.project.DumbServiceImpl)", - "filename": "DumbServiceImpl.kt" - }, - "line": 359 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.runCatchingIgnorePCE(java.lang.Runnable)", - "filename": "DumbServiceImpl.kt" - }, - "line": 753 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl$Companion.access$runCatchingIgnorePCE(com.intellij.openapi.project.DumbServiceImpl$Companion, java.lang.Runnable)", - "filename": "DumbServiceImpl.kt" - }, - "line": 740 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5f", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent()", - "filename": "DumbServiceImpl.kt" - }, - "line": 359 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6b", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.decrementDumbCounter()", - "filename": "DumbServiceImpl.kt" - }, - "line": 337 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.project.DumbServiceImpl.access$decrementDumbCounter(com.intellij.openapi.project.DumbServiceImpl)", - "filename": "DumbServiceImpl.kt" - }, - "line": 57 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "kotlin.Unit com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend$lambda$0(com.intellij.openapi.project.DumbServiceImpl, com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher)", - "filename": "DumbServiceImpl.kt" - }, - "line": 103 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$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": "0x3a", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend(java.lang.Object)", - "filename": "DumbServiceImpl.kt" - }, - "line": 101 - } - ], - "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": "0x33", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.DispatchedRunnable.run()", - "filename": "DispatchedRunnable.kt" - }, - "line": 44 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 236 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)", - "filename": "TransactionGuardImpl.java" - }, - "line": 25 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", - "filename": "TransactionGuardImpl.java" - }, - "line": 218 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)", - "filename": "JobSupport.kt" - }, - "line": 999 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x58", - "lines": [ - { - "function": { - "name": "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)", - "filename": "JobSupport.kt" - }, - "line": 292 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2d", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)", - "filename": "JobSupport.kt" - }, - "line": 857 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)", - "filename": "JobSupport.kt" - }, - "line": 829 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)", - "filename": "AbstractCoroutine.kt" - }, - "line": 97 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x76", - "lines": [ - { - "function": { - "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", - "filename": "ContinuationImpl.kt" - }, - "line": 46 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x4801eb", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4801eb" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x41771a", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x41771a" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x4197c7", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4197c7" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x419604", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x419604" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x418c32", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x418c32" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x4128c4", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4128c4" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x471c2c", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471c2c" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x471444", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x471444" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb04536", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb04536" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb07b07", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb07b07" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb070b0", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb070b0" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb05324", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb05324" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb227bb", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb227bb" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb2261e", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb2261e" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb23b5b", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb23b5b" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x47f4c0", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x34de0a", - "lines": [ - { - "function": { - "name": "htab_map_get_next_key" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3100d0", - "lines": [ - { - "function": { - "name": "map_get_next_key" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x316752", - "lines": [ - { - "function": { - "name": "__sys_bpf" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x316e99", - "lines": [ - { - "function": { - "name": "__x64_sys_bpf" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6e57", - "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": "0x48414d", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x48414d" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x4d282c", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d282c" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x4d2885", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d2885" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x4d33ed", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d33ed" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x6241b3", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x6241b3" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x69a5ec", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a5ec" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x69a33c", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a33c" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xbc14ac", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc14ac" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xbc25a4", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc25a4" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0xb1f974", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0xb1f974" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - }, - { - "address": "0x47f4c0", - "lines": [ - { - "function": { - "name": "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0" - } - } - ], - "mapping": { - "start": "0x402000", - "limit": "0xc32000", - "offset": "0x2000", - "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", - "build_id": "11e18b2cee9cdd6011fde7596c45f90e4a428c0f" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xcd2f48", - "lines": [ - { - "function": { - "name": "libjvm.so 0xcd2f48" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xc53067", - "lines": [ - { - "function": { - "name": "libjvm.so 0xc53067" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xc562d7", - "lines": [ - { - "function": { - "name": "libjvm.so 0xc562d7" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x6720b1", - "lines": [ - { - "function": { - "name": "libjvm.so 0x6720b1" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x676529", - "lines": [ - { - "function": { - "name": "libjvm.so 0x676529" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59b62e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xd5788c", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd5788c" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd549a8", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd549a8" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x673fb9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x673fb9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x675f01", - "lines": [ - { - "function": { - "name": "libjvm.so 0x675f01" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59b62e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xca29b1", - "lines": [ - { - "function": { - "name": "libjvm.so 0xca29b1" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xca4241", - "lines": [ - { - "function": { - "name": "libjvm.so 0xca4241" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x5dfc34", - "lines": [ - { - "function": { - "name": "libjvm.so 0x5dfc34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x88e8b5", - "lines": [ - { - "function": { - "name": "libjvm.so 0x88e8b5" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xb965c3", - "lines": [ - { - "function": { - "name": "libjvm.so 0xb965c3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59e148", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59e148", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x675d45", - "lines": [ - { - "function": { - "name": "libjvm.so 0x675d45" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59b62e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xf8e0c6", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf8e0c6" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf8cb60", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf8cb60" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x752b0b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x752b0b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf8ea8a", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf8ea8a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x666ddb", - "lines": [ - { - "function": { - "name": "libjvm.so 0x666ddb" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x6673d8", - "lines": [ - { - "function": { - "name": "libjvm.so 0x6673d8" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xc63596", - "lines": [ - { - "function": { - "name": "libjvm.so 0xc63596" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xc6de6d", - "lines": [ - { - "function": { - "name": "libjvm.so 0xc6de6d" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd56aca", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd56aca" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xc647db", - "lines": [ - { - "function": { - "name": "libjvm.so 0xc647db" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x890bbe", - "lines": [ - { - "function": { - "name": "libjvm.so 0x890bbe" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4b7167", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4b7167" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4b82d5", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4b82d5" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x89f571", - "lines": [ - { - "function": { - "name": "libjvm.so 0x89f571" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd45a4e", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd45a4e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd46502", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd46502" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x675d45", - "lines": [ - { - "function": { - "name": "libjvm.so 0x675d45" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59b62e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xd5c0c2", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd5c0c2" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x5c9e9a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x5c9e9a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x672338", - "lines": [ - { - "function": { - "name": "libjvm.so 0x672338" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x676529", - "lines": [ - { - "function": { - "name": "libjvm.so 0x676529" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59b62e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xf991cc", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf991cc" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf99930", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf99930" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf99ea6", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf99ea6" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf9a2fb", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf9a2fb" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x892f2e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x892f2e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d0f", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d0f" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59e148", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59e148", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59e148", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59e148", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59e148" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x765d47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x765d47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd34374", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd34374" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd347b4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd347b4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd36f34", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd36f34" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59c77a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59c77a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x675d45", - "lines": [ - { - "function": { - "name": "libjvm.so 0x675d45" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x59b62e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x59b62e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0xad7b4", - "lines": [ - { - "function": { - "name": "libc.so.6 0xad7b4" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0xcfc1af", - "lines": [ - { - "function": { - "name": "libjvm.so 0xcfc1af" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x432d9e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x432d9e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xcf350a", - "lines": [ - { - "function": { - "name": "libjvm.so 0xcf350a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x63fbf0", - "lines": [ - { - "function": { - "name": "libjvm.so 0x63fbf0" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x6856e1", - "lines": [ - { - "function": { - "name": "libjvm.so 0x6856e1" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xcc7df4", - "lines": [ - { - "function": { - "name": "libjvm.so 0xcc7df4" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xcc84e2", - "lines": [ - { - "function": { - "name": "libjvm.so 0xcc84e2" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x5d2745", - "lines": [ - { - "function": { - "name": "libjvm.so 0x5d2745" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4eb59b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4eb59b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecd89", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecd89" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecfe7", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4edd4b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x6c4a6e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x6c4a6e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x6c5c47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x6c5c47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x50e19d", - "lines": [ - { - "function": { - "name": "libjvm.so 0x50e19d" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x51c370", - "lines": [ - { - "function": { - "name": "libjvm.so 0x51c370" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x528811", - "lines": [ - { - "function": { - "name": "libjvm.so 0x528811" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x51c840", - "lines": [ - { - "function": { - "name": "libjvm.so 0x51c840" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x51c53e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x51c53e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x51c70a", - "lines": [ - { - "function": { - "name": "libjvm.so 0x51c70a" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ec547", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec547" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ec9e8", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec9e8" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecc19", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecc19" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecfe7", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4edd4b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x559925", - "lines": [ - { - "function": { - "name": "libjvm.so 0x559925" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x5625ba", - "lines": [ - { - "function": { - "name": "libjvm.so 0x5625ba" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x562e27", - "lines": [ - { - "function": { - "name": "libjvm.so 0x562e27" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x564b15", - "lines": [ - { - "function": { - "name": "libjvm.so 0x564b15" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ebfec", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ebfec" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ec90f", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec90f" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecc19", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecc19" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecfe7", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4edd4b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x55be84", - "lines": [ - { - "function": { - "name": "libjvm.so 0x55be84" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x564a47", - "lines": [ - { - "function": { - "name": "libjvm.so 0x564a47" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ebfec", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ebfec" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ec90f", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ec90f" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecc19", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecc19" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4ecfe7", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4ecfe7" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x4edd4b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x4edd4b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67c233", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67c233" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x67f1a3", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67f1a3" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x67fc1b", - "lines": [ - { - "function": { - "name": "libjvm.so 0x67fc1b" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9f705e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9f705e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()", - "filename": "AccessController.java" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "java.security.AccessControlContext java.security.AccessController.getContext()", - "filename": "AccessController.java" - }, - "line": 1006 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)", - "filename": "AWTEvent.java" - }, - "line": 120 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)", - "filename": "InvocationEvent.java" - }, - "line": 291 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)", - "filename": "InvocationEvent.java" - }, - "line": 177 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x10", - "lines": [ - { - "function": { - "name": "void sun.awt.GlobalCursorManager.updateCursorLater(java.awt.Component)", - "filename": "GlobalCursorManager.java" - }, - "line": 120 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XGlobalCursorManager.nativeUpdateCursor(java.awt.Component)", - "filename": "XGlobalCursorManager.java" - }, - "line": 60 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xbc", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XWindow.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XWindow.java" - }, - "line": 1104 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XComponentPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XComponentPeer.java" - }, - "line": 74 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x88", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XWindowPeer.java" - }, - "line": 2364 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf6", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", - "filename": "XBaseWindow.java" - }, - "line": 1220 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x82", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)", - "filename": "XWindowPeer.java" - }, - "line": 2360 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf6", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)", - "filename": "XBaseWindow.java" - }, - "line": 1220 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x54", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)", - "filename": "XBaseWindow.java" - }, - "line": 1178 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x49", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)", - "filename": "XToolkit.java" - }, - "line": 917 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x218", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XToolkit.run(boolean)", - "filename": "XToolkit.java" - }, - "line": 1064 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void sun.awt.X11.XToolkit.run()", - "filename": "XToolkit.java" - }, - "line": 946 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x73", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.util.text.StringUtilRt.equal(java.lang.CharSequence, java.lang.CharSequence, boolean)", - "filename": "StringUtilRt.java" - }, - "line": 35 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.CharSequence, java.lang.CharSequence)", - "filename": "HashingStrategy.java" - }, - "line": 52 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.Object, java.lang.Object)", - "filename": "HashingStrategy.java" - }, - "line": 36 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object, com.intellij.util.containers.HashingStrategy)", - "filename": "ConcurrentHashMap.java" - }, - "line": 6253 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe", - "lines": [ - { - "function": { - "name": "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object)", - "filename": "ConcurrentHashMap.java" - }, - "line": 6249 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x48", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.concurrency.ConcurrentHashMap.get(java.lang.Object)", - "filename": "ConcurrentHashMap.java" - }, - "line": 917 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x37", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeAssocTable.findAssociatedFileType(java.lang.CharSequence)", - "filename": "FileTypeAssocTable.java" - }, - "line": 156 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$FileTypeWithDescriptor com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.lambda$getFileTypeByFileName$12(java.lang.CharSequence)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 720 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.openapi.util.ThrowableComputable)", - "filename": "ConcurrencyUtil.java" - }, - "line": 246 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.withReadLock(com.intellij.openapi.util.ThrowableComputable)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 1816 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2d", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.CharSequence)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 720 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.String)", - "filename": "FileTypeManagerImpl.java" - }, - "line": 711 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3d", - "lines": [ - { - "function": { - "name": "boolean com.goide.vgo.project.VgoLibraryRootsProvider$VgoDependenciesLibrary.shouldExclude(boolean, java.lang.String, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier)", - "filename": "VgoLibraryRootsProvider.java" - }, - "line": 114 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x7", - "lines": [ - { - "function": { - "name": "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)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1d", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition.lambda$transformToCondition$3(java.util.Collection, com.intellij.openapi.vfs.VirtualFile)", - "filename": "SyntheticLibrary.java" - }, - "line": 236 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition$$Lambda+\u003chidden\u003e.value(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "boolean com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor.registerFileSets$lambda$2(com.intellij.openapi.util.Condition, com.intellij.openapi.vfs.VirtualFile)", - "filename": "VgoDependencyWorkspaceFileIndexContributor.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "boolean com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.isExcluded(com.intellij.openapi.vfs.VirtualFile)", - "filename": "workspaceFileSets.kt" - }, - "line": 328 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "int com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", - "filename": "workspaceFileSets.kt" - }, - "line": 338 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x39", - "lines": [ - { - "function": { - "name": "int com.intellij.workspaceModel.core.fileIndex.impl.MultipleStoredWorkspaceFileSets.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)", - "filename": "workspaceFileSets.kt" - }, - "line": 212 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf4", - "lines": [ - { - "function": { - "name": "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)", - "filename": "WorkspaceFileIndexDataImpl.kt" - }, - "line": 113 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3e", - "lines": [ - { - "function": { - "name": "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)", - "filename": "WorkspaceFileIndexImpl.kt" - }, - "line": 267 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.roots.impl.ProjectFileIndexImpl.isExcluded(com.intellij.openapi.vfs.VirtualFile)", - "filename": "ProjectFileIndexImpl.java" - }, - "line": 67 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile$lambda$2(com.intellij.openapi.roots.ProjectFileIndex, com.intellij.openapi.vfs.VirtualFile)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$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.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)", - "filename": "actions.kt" - }, - "line": 28 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$4(com.intellij.openapi.util.Computable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 260 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xe9", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 314 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)", - "filename": "AnyThreadWriteThreadingSupport.kt" - }, - "line": 260 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)", - "filename": "ApplicationImpl.java" - }, - "line": 858 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)", - "filename": "actions.kt" - }, - "line": 28 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x75", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots$lambda$0(com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean, com.intellij.openapi.vfs.VirtualFile)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 32 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter.lambda$and$0(com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.vfs.VirtualFile)", - "filename": "VirtualFileFilter.java" - }, - "line": 35 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.vfs.VirtualFileFilter$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore$1.visitFileEx(com.intellij.openapi.vfs.VirtualFile)", - "filename": "VfsUtilCore.java" - }, - "line": 287 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x23", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 303 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13c", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13c", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13c", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13c", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13c", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)", - "filename": "VfsUtilCore.java" - }, - "line": 335 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x27", - "lines": [ - { - "function": { - "name": "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[])", - "filename": "VfsUtilCore.java" - }, - "line": 284 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.vfs.VfsUtilCore.iterateChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.roots.ContentIterator)", - "filename": "VfsUtilCore.java" - }, - "line": 277 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9d", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3c", - "lines": [ - { - "function": { - "name": "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)", - "filename": "IndexableFilesIterationMethods.kt" - }, - "line": 71 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x23", - "lines": [ - { - "function": { - "name": "boolean com.intellij.util.indexing.roots.SourceRootHolderIteratorBase.iterateFiles(com.intellij.openapi.project.Project, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter)", - "filename": "SourceRootHolderIteratorBase.java" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4d", - "lines": [ - { - "function": { - "name": "void com.intellij.util.indexing.FileBasedIndexEx.iterateIndexableFiles(com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.project.Project, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "FileBasedIndexEx.java" - }, - "line": 530 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1f", - "lines": [ - { - "function": { - "name": "com.goide.stubs.index.GoIdFilter com.goide.stubs.index.GoIdFilter.lambda$createIdFilter$3(com.intellij.openapi.project.Project, com.intellij.openapi.util.Condition)", - "filename": "GoIdFilter.java" - }, - "line": 92 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.goide.stubs.index.GoIdFilter$$Lambda+\u003chidden\u003e.call()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x27", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.FutureTask.run()", - "filename": "FutureTask.java" - }, - "line": 317 - } - ], - "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": "0xa", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 249 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 30 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 227 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2e", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 215 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5c", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", - "filename": "ThreadPoolExecutor.java" - }, - "line": 1144 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", - "filename": "ThreadPoolExecutor.java" - }, - "line": 642 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x17", - "lines": [ - { - "function": { - "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 735 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } - ], - "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": "0xf", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x0", - "lines": [ - { - "function": { - "name": "boolean kotlin.text.StringsKt__StringsKt.contains(java.lang.CharSequence, char, boolean)", - "filename": "Strings.kt" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xb", - "lines": [ - { - "function": { - "name": "boolean kotlin.text.StringsKt__StringsKt.contains$default(java.lang.CharSequence, char, boolean, int, java.lang.Object)", - "filename": "Strings.kt" - }, - "line": 1170 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x35", - "lines": [ - { - "function": { - "name": "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)", - "filename": "GitHubTableMarkerProvider.kt" - }, - "line": 20 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x60", - "lines": [ - { - "function": { - "name": "java.util.List org.intellij.markdown.parser.MarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", - "filename": "MarkerProcessor.kt" - }, - "line": 47 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1c", - "lines": [ - { - "function": { - "name": "java.util.List org.intellij.markdown.flavours.commonmark.CommonMarkMarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)", - "filename": "CommonMarkMarkerProcessor.kt" - }, - "line": 79 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5a", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.parser.LookaheadText$Position org.intellij.markdown.parser.MarkerProcessor.processPosition(org.intellij.markdown.parser.LookaheadText$Position)", - "filename": "MarkerProcessor.kt" - }, - "line": 75 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x52", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.doParse(org.intellij.markdown.IElementType, java.lang.String, boolean)", - "filename": "MarkdownParser.kt" - }, - "line": 67 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.parse(org.intellij.markdown.IElementType, java.lang.String, boolean)", - "filename": "MarkdownParser.kt" - }, - "line": 33 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x49", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.performParsing(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - }, - "line": 42 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1b", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parse(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - }, - "line": 34 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x12", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager$Companion.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - }, - "line": 71 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)", - "filename": "MarkdownParserManager.kt" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4a", - "lines": [ - { - "function": { - "name": "void org.intellij.plugins.markdown.lang.lexer.MarkdownToplevelLexer.start(java.lang.CharSequence, int, int, int)", - "filename": "MarkdownToplevelLexer.java" - }, - "line": 52 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.lexer.DelegateLexer.start(java.lang.CharSequence, int, int, int)", - "filename": "DelegateLexer.java" - }, - "line": 25 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2f", - "lines": [ - { - "function": { - "name": "void com.intellij.lexer.LayeredLexer.start(java.lang.CharSequence, int, int, int)", - "filename": "LayeredLexer.java" - }, - "line": 75 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.start(java.lang.CharSequence, int, int, int)", - "filename": "ValidatingLexerWrapper.java" - }, - "line": 38 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5f", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(java.lang.CharSequence)", - "filename": "LexerEditorHighlighter.java" - }, - "line": 432 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xf", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(java.lang.CharSequence)", - "filename": "LexerEditorHighlighter.java" - }, - "line": 413 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x42", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.createHighlighter(boolean)", - "filename": "EditorHighlighterUpdater.kt" - }, - "line": 154 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.updateHighlighters$lambda$0(com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater)", - "filename": "EditorHighlighterUpdater.kt" - }, - "line": 139 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater$$Lambda+\u003chidden\u003e.call()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 857 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 889 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x38", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 618 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 581 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$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": "0x5", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 95 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$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": "0x3", - "lines": [ - { - "function": { - "name": "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 140 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xc", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)", - "filename": "ProgressManager.java" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.ProgressManager$$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.progress.impl.CoreProgressManager.lambda$runProcess$1(java.lang.Runnable, io.opentelemetry.api.trace.Span)", - "filename": "CoreProgressManager.java" - }, - "line": 223 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x35", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(io.opentelemetry.api.trace.Span, kotlin.jvm.functions.Function1)", - "filename": "trace.kt" - }, - "line": 45 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x44", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)", - "filename": "CoreProgressManager.java" - }, - "line": 222 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager$$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.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(java.lang.Runnable)", - "filename": "CoreProgressManager.java" - }, - "line": 674 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xd8", - "lines": [ - { - "function": { - "name": "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)", - "filename": "CoreProgressManager.java" - }, - "line": 749 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5c", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "CoreProgressManager.java" - }, - "line": 705 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x11", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "CoreProgressManager.java" - }, - "line": 673 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2c", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressManagerImpl.java" - }, - "line": 79 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "CoreProgressManager.java" - }, - "line": 203 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x19", - "lines": [ - { - "function": { - "name": "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressManager.java" - }, - "line": 98 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x3f", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 137 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x29", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)", - "filename": "ProgressIndicatorUtils.java" - }, - "line": 95 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x92", - "lines": [ - { - "function": { - "name": "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 581 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x28", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 480 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)", - "filename": "NonBlockingReadActionImpl.java" - }, - "line": 495 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x4", - "lines": [ - { - "function": { - "name": "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()", - "filename": "\u003cunknown\u003e" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xa", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 249 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)", - "filename": "BoundedTaskExecutor.java" - }, - "line": 30 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x14", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 227 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2e", - "lines": [ - { - "function": { - "name": "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()", - "filename": "BoundedTaskExecutor.java" - }, - "line": 215 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5c", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", - "filename": "ThreadPoolExecutor.java" - }, - "line": 1144 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()", - "filename": "ThreadPoolExecutor.java" - }, - "line": 642 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x17", - "lines": [ - { - "function": { - "name": "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 735 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1", - "lines": [ - { - "function": { - "name": "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } - ], - "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": "0xf", - "lines": [ - { - "function": { - "name": "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()", - "filename": "Executors.java" - }, - "line": 732 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x5", - "lines": [ - { - "function": { - "name": "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)", - "filename": "Thread.java" - }, - "line": 1596 - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x13", - "lines": [ - { - "function": { - "name": "void java.lang.Thread.run()", - "filename": "Thread.java" - }, - "line": 1583 - } - ], - "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": "libjvm.so 0x914b94" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9164da", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9164da" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9e65b9", - "lines": [ - { - "function": { - "name": "libjvm.so 0x9e65b9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x92b50e", - "lines": [ - { - "function": { - "name": "libjvm.so 0x92b50e" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xf7b717", - "lines": [ - { - "function": { - "name": "libjvm.so 0xf7b717" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0xd075c9", - "lines": [ - { - "function": { - "name": "libjvm.so 0xd075c9" - } - } - ], - "mapping": { - "start": "0x2a3000", - "limit": "0x1118000", - "offset": "0x2a3000", - "filename": "libjvm.so", - "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "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": [ - 100000000 - ] - }, - { - "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": [ - 100000000 - ] - }, - { - "locations": [ - { - "address": "0x12495b0", - "lines": [ - { - "function": { - "name": "_raw_spin_unlock_irqrestore" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2066db", - "lines": [ - { - "function": { - "name": "hrtimer_start_range_ns" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x124808f", - "lines": [ - { - "function": { - "name": "schedule_hrtimeout_range_clock" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1248152", - "lines": [ - { - "function": { - "name": "schedule_hrtimeout_range" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1247d14", - "lines": [ - { - "function": { - "name": "usleep_range_state" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x16054b", - "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": [ - 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": "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": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x11e6fe", - "lines": [ - { - "function": { - "name": "set_placement_list" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1202b1", - "lines": [ - { - "function": { - "name": "nouveau_bo_placement_set" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1228ac", - "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": "libc.so.6 0x124dec" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x7aff", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0xb02f", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0x51ee", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x53ba", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x5a1b", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa7103a", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x311bf7", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x1d1d5", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x1d1d5" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x14c9cf", - "lines": [ - { - "function": { - "name": "Xorg 0x14c9cf" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x275a2", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x275a2" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x2746c", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x2746c" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x140e6f", - "lines": [ - { - "function": { - "name": "Xorg 0x140e6f" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x62ab3", - "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x66e51", - "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x4f394", - "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "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": "libc.so.6 0x124dec" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x7aff", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0xb02f", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0x51ee", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x53ba", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x5a1b", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa7103a", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x311bf7", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x100ef", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x100ef" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x14bb06", - "lines": [ - { - "function": { - "name": "Xorg 0x14bb06" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x13f976", - "lines": [ - { - "function": { - "name": "Xorg 0x13f976" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x62ab3", - "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x66e51", - "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x4f394", - "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "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": "0x218ff0", - "lines": [ - { - "function": { - "name": "do_setitimer" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2197aa", - "lines": [ - { - "function": { - "name": "__x64_sys_setitimer" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x6648", - "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": "0xe29da", - "lines": [ - { - "function": { - "name": "libc.so.6 0xe29da" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x1e4a68", - "lines": [ - { - "function": { - "name": "Xorg 0x1e4a68" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x1db31e", - "lines": [ - { - "function": { - "name": "Xorg 0x1db31e" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x627e9", - "lines": [ - { - "function": { - "name": "Xorg 0x627e9" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x66e51", - "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x4f394", - "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x28414", - "lines": [ - { - "function": { - "name": "libc.so.6 0x28414" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x274ff", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x274ff" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x2746c", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x2746c" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x140e6f", - "lines": [ - { - "function": { - "name": "Xorg 0x140e6f" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x62ab3", - "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x66e51", - "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x4f394", - "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - } - ], - "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": "0x124dec", - "lines": [ - { - "function": { - "name": "libc.so.6 0x124dec" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x7aff", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0xb02f", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0x51ee", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x53ba", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x5a1b", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa7103a", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x311bf7", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x17ba6", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x17ba6" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x18bf8", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x18bf8" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x14b73c", - "lines": [ - { - "function": { - "name": "Xorg 0x14b73c" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x141792", - "lines": [ - { - "function": { - "name": "Xorg 0x141792" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x62ab3", - "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x66e51", - "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x4f394", - "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "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": "libc.so.6 0x124dec" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x7aff", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0xb02f", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0x51ee", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x51ee" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x53ba", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x5a1b", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa7103a", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa7103a" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x311bf7", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x311bf7" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x100ef", - "lines": [ - { - "function": { - "name": "libglamoregl.so 0x100ef" - } - } - ], - "mapping": { - "start": "0x7000", - "limit": "0x29000", - "offset": "0x7000", - "filename": "libglamoregl.so", - "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" - } - }, - { - "address": "0x14bb06", - "lines": [ - { - "function": { - "name": "Xorg 0x14bb06" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x13f976", - "lines": [ - { - "function": { - "name": "Xorg 0x13f976" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x62ab3", - "lines": [ - { - "function": { - "name": "Xorg 0x62ab3" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x66e51", - "lines": [ - { - "function": { - "name": "Xorg 0x66e51" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x4f394", - "lines": [ - { - "function": { - "name": "Xorg 0x4f394" - } - } - ], - "mapping": { - "start": "0x40000", - "limit": "0x1f2000", - "offset": "0x40000", - "filename": "Xorg", - "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x1243691", - "lines": [ - { - "function": { - "name": "mutex_lock" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8d5a9", - "lines": [ - { - "function": { - "name": "gf100_vmm_invalidate" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8d7ce", - "lines": [ - { - "function": { - "name": "gf100_vmm_flush" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x85937", - "lines": [ - { - "function": { - "name": "nvkm_vmm_iter.isra.0" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x8642e", - "lines": [ - { - "function": { - "name": "nvkm_vmm_ptes_get_map" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x866a4", - "lines": [ - { - "function": { - "name": "nvkm_vmm_map_locked" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x885dd", - "lines": [ - { - "function": { - "name": "nvkm_vmm_map" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x837d6", - "lines": [ - { - "function": { - "name": "nvkm_mem_map_dma" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x9107c", - "lines": [ - { - "function": { - "name": "nvkm_uvmm_mthd_map.isra.0" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x91e26", - "lines": [ - { - "function": { - "name": "nvkm_uvmm_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": "0x4a1e", - "lines": [ - { - "function": { - "name": "nvif_vmm_map" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x124f2b", - "lines": [ - { - "function": { - "name": "nouveau_mem_map" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x126a83", - "lines": [ - { - "function": { - "name": "nouveau_vma_new" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1231a4", - "lines": [ - { - "function": { - "name": "nouveau_gem_object_open" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xca6c96", - "lines": [ - { - "function": { - "name": "drm_gem_handle_create_tail" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xca6da4", - "lines": [ - { - "function": { - "name": "drm_gem_handle_create" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x123d0c", - "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_new" - } - } - ], - "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": "libc.so.6 0x124dec" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x7aff", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0xb02f", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0x433a", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x433a" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa0ecf1", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa0ecf1" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0xa593e4", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa593e4" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x5120", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5120" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x53ba", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x5a1b", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa59b08", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa59b08" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x3baaa1", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x3baaa1" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x171ff", - "lines": [ - { - "function": { - "name": "libkwinglutils.so.5.27.11 0x171ff" - } - } - ], - "mapping": { - "start": "0xa000", - "limit": "0x1d000", - "offset": "0xa000", - "filename": "libkwinglutils.so.5.27.11", - "build_id": "b79e87745522e8a9559a65a18dc70d96dafcb154" - } - }, - { - "address": "0x270304", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x270304" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x284412", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x284412" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x275ea0", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x275ea0" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x1be5b7", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1be5b7" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x1c3052", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1c3052" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x1c33bc", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1c33bc" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x312e15", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x312e15" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x172323", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x172323" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x1c912e", - "lines": [ - { - "function": { - "name": "libkwin.so.5.27.11 0x1c912e" - } - } - ], - "mapping": { - "start": "0x158000", - "limit": "0x496000", - "offset": "0x158000", - "filename": "libkwin.so.5.27.11", - "build_id": "2d206eca5fdc7f5e92587e95fd932a564148c745" - } - }, - { - "address": "0x312e15", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x312e15" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x31710c", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x31710c" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x30624a", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x30624a" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x16bd44", - "lines": [ - { - "function": { - "name": "libQt5Widgets.so.5.15.13 0x16bd44" - } - } - ], - "mapping": { - "start": "0x14e000", - "limit": "0x545000", - "offset": "0x14e000", - "filename": "libQt5Widgets.so.5.15.13", - "build_id": "bfe07edc9e95f586e665ab542d433386d87d6409" - } - }, - { - "address": "0x2d8117", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x2d8117" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x3345aa", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x3345aa" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x334ed8", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x334ed8" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x5d5b4", - "lines": [ - { - "function": { - "name": "libglib-2.0.so.0.8000.0 0x5d5b4" - } - } - ], - "mapping": { - "start": "0x1e000", - "limit": "0xbe000", - "offset": "0x1e000", - "filename": "libglib-2.0.so.0.8000.0", - "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" - } - }, - { - "address": "0xbc716", - "lines": [ - { - "function": { - "name": "libglib-2.0.so.0.8000.0 0xbc716" - } - } - ], - "mapping": { - "start": "0x1e000", - "limit": "0xbe000", - "offset": "0x1e000", - "filename": "libglib-2.0.so.0.8000.0", - "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" - } - }, - { - "address": "0x5ca52", - "lines": [ - { - "function": { - "name": "libglib-2.0.so.0.8000.0 0x5ca52" - } - } - ], - "mapping": { - "start": "0x1e000", - "limit": "0xbe000", - "offset": "0x1e000", - "filename": "libglib-2.0.so.0.8000.0", - "build_id": "461eff2b4df472ba9c32b2358ae9ba018a59a8c5" - } - }, - { - "address": "0x335278", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x335278" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x2d6a7a", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x2d6a7a" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x2df3e7", - "lines": [ - { - "function": { - "name": "libQt5Core.so.5.15.13 0x2df3e7" - } - } - ], - "mapping": { - "start": "0x8e000", - "limit": "0x3c4000", - "offset": "0x8e000", - "filename": "libQt5Core.so.5.15.13", - "build_id": "0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f" - } - }, - { - "address": "0x47ba0", - "lines": [ - { - "function": { - "name": "kwin_x11 0x47ba0" - } - } - ], - "mapping": { - "start": "0x3e000", - "limit": "0xef000", - "offset": "0x3e000", - "filename": "kwin_x11", - "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" - } - }, - { - "address": "0x2a1c9", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a1c9" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x2a28a", - "lines": [ - { - "function": { - "name": "libc.so.6 0x2a28a" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x490e4", - "lines": [ - { - "function": { - "name": "kwin_x11 0x490e4" - } - } - ], - "mapping": { - "start": "0x3e000", - "limit": "0xef000", - "offset": "0x3e000", - "filename": "kwin_x11", - "build_id": "84633cbbb2a365047193fc8ec67f254e0170246b" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x225dd3", - "lines": [ - { - "function": { - "name": "futex_wake" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x22291d", - "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": "0x98fc6", - "lines": [ - { - "function": { - "name": "libc.so.6 0x98fc6" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0xa1ac1", - "lines": [ - { - "function": { - "name": "libc.so.6 0xa1ac1" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x6a2a5", - "lines": [ - { - "function": { - "name": "firefox-bin 0x6a2a5" - } - } - ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x22000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } - }, - { - "address": "0x2b07a52", - "lines": [ - { - "function": { - "name": "libxul.so 0x2b07a52" - } - } - ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } - }, - { - "address": "0x2a5ecf8", - "lines": [ - { - "function": { - "name": "libxul.so 0x2a5ecf8" - } - } - ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } - }, - { - "address": "0x2a5d620", - "lines": [ - { - "function": { - "name": "libxul.so 0x2a5d620" - } - } - ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } - }, - { - "address": "0x2a83c8d", - "lines": [ - { - "function": { - "name": "libxul.so 0x2a83c8d" - } - } - ], - "mapping": { - "start": "0x2995000", - "limit": "0x8ddb000", - "offset": "0x2994000", - "filename": "libxul.so", - "build_id": "ed82595fe72c9215b49e7e2cb2f85ea9269c1a61" - } - }, - { - "address": "0x197a1", - "lines": [ - { - "function": { - "name": "libnspr4.so 0x197a1" - } - } - ], - "mapping": { - "start": "0x12000", - "limit": "0x35000", - "offset": "0x11000", - "filename": "libnspr4.so", - "build_id": "caa869f624148b1ec093de72d7992781a5411334" - } - }, - { - "address": "0x5dd1f", - "lines": [ - { - "function": { - "name": "firefox-bin 0x5dd1f" - } - } - ], - "mapping": { - "start": "0x23000", - "limit": "0xdc000", - "offset": "0x22000", - "filename": "firefox-bin", - "build_id": "97e2d250255a9735edaa1ab1a4a1d125ec2f7d26" - } - }, - { - "address": "0x9ca93", - "lines": [ - { - "function": { - "name": "libc.so.6 0x9ca93" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x129c3b", - "lines": [ - { - "function": { - "name": "libc.so.6 0x129c3b" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - } - ], - "values": [ - 50000000 - ] - }, - { - "locations": [ - { - "address": "0x40ca45", - "lines": [ - { - "function": { - "name": "vma_interval_tree_subtree_search" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x40d2b9", - "lines": [ - { - "function": { - "name": "vma_interval_tree_iter_first" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x41ea8e", - "lines": [ - { - "function": { - "name": "unmap_mapping_range" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0xdc4", - "lines": [ - { - "function": { - "name": "ttm_bo_unmap_virtual" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1762", - "lines": [ - { - "function": { - "name": "ttm_bo_handle_move_mem" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2361", - "lines": [ - { - "function": { - "name": "ttm_bo_validate" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x2532", - "lines": [ - { - "function": { - "name": "ttm_bo_init_reserved" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x1204a4", - "lines": [ - { - "function": { - "name": "nouveau_bo_init" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x123b6c", - "lines": [ - { - "function": { - "name": "nouveau_gem_new" - } - } - ], - "mapping": { - "start": "0x0", - "limit": "0x0", - "offset": "0x0" - } - }, - { - "address": "0x123cbc", - "lines": [ - { - "function": { - "name": "nouveau_gem_ioctl_new" - } - } - ], - "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": "libc.so.6 0x124dec" - } - } - ], - "mapping": { - "start": "0x28000", - "limit": "0x1b0000", - "offset": "0x28000", - "filename": "libc.so.6", - "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" - } - }, - { - "address": "0x7aff", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0x7aff" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0xb02f", - "lines": [ - { - "function": { - "name": "libdrm.so.2.4.0 0xb02f" - } - } - ], - "mapping": { - "start": "0x5000", - "limit": "0x11000", - "offset": "0x5000", - "filename": "libdrm.so.2.4.0", - "build_id": "34b19924754a393989de6b867174cd1108abe3f7" - } - }, - { - "address": "0x433a", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x433a" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0xa0ecf1", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa0ecf1" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0xa593e4", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0xa593e4" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x5120", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5120" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x53ba", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x53ba" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x5a1b", - "lines": [ - { - "function": { - "name": "libdrm_nouveau.so.2.0.0 0x5a1b" - } - } - ], - "mapping": { - "start": "0x2000", - "limit": "0x7000", - "offset": "0x2000", - "filename": "libdrm_nouveau.so.2.0.0", - "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" - } - }, - { - "address": "0x9fb761", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x9fb761" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - }, - { - "address": "0x3eeb41", - "lines": [ - { - "function": { - "name": "nouveau_dri.so 0x3eeb41" - } - } - ], - "mapping": { - "start": "0x97000", - "limit": "0x14ad000", - "offset": "0x97000", - "filename": "nouveau_dri.so", - "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" - } - } - ], - "values": [ - 50000000 - ] - } - ], - "time_nanos": "1735810160954000000", - "duration_nanos": "1735810159954000000", - "period": "1000000000" -} \ No newline at end of file