From 21eb83c720c2a40bd5f185450047a39f2602121e Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Fri, 3 Jan 2025 01:05:33 -0500 Subject: [PATCH] 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"